.entry-header,
.entry-content {
    max-width: 1200px;
    margin: auto;
}

.entry-header *,
.entry-content * {
    font-family: 'Raleway';
    color: #111921 ;
}

.festival-cards__row {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    gap: 20px;
}

.festival-cards__row .card {
    width: 100%;
    border: 1px solid #b6bbe81e;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-radius: 20px;
    background: #b6bbe81e;
    transition: .15s;
}

.festival-cards__row .card:hover {
    scale: 1.05
}

.entry-header {
    margin-bottom: 35px;
}

.entry-header * {
    font-weight: 600;
}

section:not(:last-of-type) {
    margin-bottom: 35px;
}

section h2,
section h3 {
    font-weight: 600;
}

section p,
section li {
    font-size: 16px;
}

input {
    width: 100%;
    border-radius: 20px;
    padding: 10px;
}

button[type="submit"] {
    font-weight: 500;
    padding: 10px 15px;
    color: #ffffff;
    background-color: #b5bae8;
    transition: .15s;
    cursor: pointer;
}

button[type="submit"]:hover,
button[type="submit"]:active {
    background-color: #7e83b5;
}

#form-root {
    display: block;
}

#success-root {
    display: none;
}