* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #ecd19e;
}

.wrapper {
    padding: 20px 30px;
    border-radius: 15px;
    font-family: sans-serif;
    color: #f8dcd5;
    background-color: #d84315;
    transform: scale(0.7);
}

section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

/* Křížek pro zavření */
h1:after {
    margin-left: 200px;
    cursor: pointer;
    content: '\2715';
}
/* Kontejner pro vyhledávací pole */
.search {
    position: relative;
}

h2 {
    margin-top: 20px;
    margin-bottom: 10px;
    font-size: 12px;
    text-transform: uppercase;
}

/* Textové pole vyhledávání */
input[type="text"] {
    width: 300px;
    height: 40px;
    padding-left: 37px;
    border-radius: 15px;
    font-size: 20px;
    color: #f8dcd5;
    background-color: #1b0000;
    border: 1px solid #1b0000;
    outline: none;
}

/* Ikona lupy */
img {
    position: absolute;
    top: 28px;
    left: 2px;
}

.sort {
    margin-top: 25px;
}

h3 {
    letter-spacing: 1px;
}

input[type="radio"] {
    width: 18px;
    height: 18px;
    margin-top: 15px;
    accent-color: #1b0000;
}

label {
    margin-right: 20px;
}

.include {
    margin-top: 20px;
}

input[type="checkbox"] {
    width: 16px;
    height: 16px;
    margin-top: 15px;
    accent-color: #1b0000;
}

/* Tlačítko vyhledávání */
button {
    width: 180px;
    height: 45px;
    margin-top: 25px;
    font-size: 20px;
    color: #f8dcd5;
    background-color: #1b0000;
    border: none;
    border-radius: 15px;
    cursor: pointer;
}

button:hover {
    background-color: #f8dcd5;
    color: #1b0000;
    border: 1.5px solid #1b0000;
}