@import url('https://fonts.googleapis.com/css2?family=Comfortaa&display=swap');

* {
    margin: 0;
    padding: 0;
}

html, body {
    width: 100%;
    height: 100%;
}


body {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    min-height: 100%;
    font-family: "Comfortaa", sans-serif;
}


/*Header*/
header {
    width: 100%;
    background-color: #58cc02;
}
footer {
    width: 100%;
    background-color: #58cc02;
}

/*Content*/

main {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1 1 auto;
    margin: auto auto 50px;
    max-width: 1320px;
    width: 100%;
    gap: 50px;
    font-family: "Comfortaa", sans-serif;
}


.free-time__box{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.free-time__item{
    padding: 10px;
    background-color: #569AFD;
    width: 80px;
    height: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 20px;
    border-radius: 10px;
}
.free-time__item--blue{
    background-color: rgb(51, 182, 121);
    color: white;
    cursor: pointer;
}
.free-time__item--red{
    background-color: #8c8c8c;
    color: black;
    pointer-events: none;
}
.form__alert{
    display: none;
}
.events__box{
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.events__item{
    display: flex;
    gap: 20px;
}
.events__item div{
    min-width: 70px;
}
/*Footer*/
