* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #ecd19e;
}

/* Zarovnání karet vedle sebe */
section {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    height: 100vh;
    transform: scale(0.7);
}

.card {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    width: 220px;
    height: 400px;
    text-align: center;
    background-color: #f4e9d5;
    color: #201001;
    border: 1px solid #e37001;
    border-radius: 10px;
}

.card:focus-within, .card.initial-focus {
    box-shadow: 0 0 0 5px #e37001;
    outline: none;
}

p {
    font-family: sans-serif;
    font-size: 12px;
    text-transform: uppercase;
}

h1 {
    margin-bottom: 10px;
    font-size: 32px;
}

h2 {
    font-size: large;
    font-weight: 100;
}

button {
    width: 128px;
    padding: 8px;
    font-size: 17px;
    font-weight: bold;
    letter-spacing: 0.7px;
    background-color: #e37001;
    border: 2px solid #e37001;
    border-radius: 12px;
    transition: 0.5s;
    cursor: pointer;
}

button:hover {
    background-color: #fabd84;
}

ul {
    height: 160px;
    padding-top: 5px;
    border-top: 1px solid #e36e0121;
}

ul li {
    margin: 8px;
    font-family: sans-serif;
    font-size: 14px;
    list-style-type: none;
}

ul li:before {
    margin-right: 0.5rem;
    color: #fb7a02;
    content: '\2713';
}