* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    list-style: none;
}

body {
    font-family: 'Montserrat', sans-serif;
}

/* =========== MAIN =========== */

main {
    width: 100%;
    margin-top: 55px;
    overflow: hidden;
}

.title {
    font-size: 27px;
    font-weight: 600;
    background: -webkit-linear-gradient(to top, #f4c4da, #fc67a5);
    background: linear-gradient(to top, #f4c4da, #fc67a5);
    -webkit-background-clip: text;
    color: transparent;
    text-align: center;
} 

.title i {
    background: -webkit-linear-gradient(to top, #f4c4da, #fc67a5);
    background: linear-gradient(to top, #f4c4da, #fc67a5);
    -webkit-background-clip: text;
    color: transparent;
} 

.separation {
    margin: 60px 20px;
}

/* ===== HOME ===== */

.home {
    width: 100%;
    height: 450px;
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.home_text {
    color: white;
    text-align: center;
}

.home h2 {
    font-size: 25px;
    font-weight: 500;
}

.home span h1 {
    font-size: 40px;
    font-weight: 600;
}

.timer  {
    margin: 20px 0 35px;
    color: white;
    text-align: center;
}

/* ===== LOCATION ===== */

.ilustrations {
    width: 100%;
    margin-top: 35px;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
}

.ilustrations img {
    width: 100%;
    height: 180px;
    margin-bottom: 25px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 3px 18px rgba(0, 0, 0, 0.3);
}

.info_location {
    text-align: center;
}

.info_location h3 {
    color: black;
    margin: 20px 0 15px;
    font-size: 20px;
    font-weight: 500;
}

.info_location p {
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: 400;
    color: gray;
}

.info_location p span {
    font-weight: 500;
    color: black;
}

.info_location a {
    margin-top: 10px;
    display: inline-block;
    font-size: 15px;
    font-weight: 500;
    color: black;
    background: white;
    border: 2px solid black;
    padding: 6px 17px;
    border-radius: 5px;
    transition: .3s ease-in-out all;
}

.info_location a:hover,
.info_location a:checked {
    border: 2px solid black;
    background: black;
    color: white;
}

/* ===== PHOTOS ===== */

ul.slider {
    position: relative;
    width: 100%;
    height: 180px;
    margin: 30px 0;
    box-shadow: 0 3px 18px rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    overflow: hidden;
}

ul.slider li {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    width: inherit;
    transition: opacity .3s ease-in-out all;
}

ul.slider li img {
    width: 100%;
    height: inherit;
    object-fit: cover;
}

ul.slider li:first-child {
    opacity: 1;
}

ul.slider li:target {
    opacity: 1;
}

.menu {
    text-align: center;
    margin: 20px 0;
}

.menu li  {
    display: inline-block;
    text-align: center;
}

.menu li a {
    display: inline-block;
    color: gainsboro;
    font-size: 17px;
    margin: 0 8px;
    transition: .3s ease-in-out all;
}

.menu li a:hover,
.menu li a:checked {
    color: black;
}

.user_text h3 {
    font-size: 20px;
    font-weight: 500;
    text-align: center;
    margin-bottom: 13px;
}

.user_text p {
    color: gray;
    line-height: 25px;
    font-size: 15px;
    font-weight: 400;
    text-align: justify;
}

/* ===== ClOTHING ===== */

.rules_container {
    display: flex;
    flex-direction: column;
}

.clothing_ilustration {
    margin: 0;
}

.clothing_ilustration img {
    width: 100%;
}

.clothing_text {
    color: black;
    text-align: center;
}

.clothing_text h3 {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 13px;
}

.clothing_text ul {
    color: gray;
}

.clothing_text ul li {
    margin-top: 30px;
    font-size: 15px;
    font-weight: 400;
}

/* ===== ATTENDANCE ===== */

.form_attendance {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.form_attendance h3 {
    font-size: 16px;
    line-height: 27px;
    font-weight: 500;
    text-align: center;
    margin: 25px 0 10px;
}

.form_attendance textarea {
    font-family: 'Montserrat', sans-serif;
    width: 100%;
    height: 120px;
    margin-top: 15px;
    border: 3px solid pink;
    border-radius: 10px;
    padding: 8px 12px;
    font-size: 16px;
    color: black;
}

.form_attendance textarea:focus,
.form_attendance input[type="text"] {
    outline: none;
}

.form_attendance input[type="submit"] {
    cursor: pointer;
    margin-top: 30px;
    display: inline-block;
    font-size: 15px;
    font-weight: 500;
    color: black;
    background: white;
    border: 2px solid black;
    width: 100%;
    padding: 8px 0;
    border-radius: 5px;
    transition: .3s ease-in-out all;
}

.form_attendance input[type="submit"]:hover,
.form_attendance input[type="submit"]:checked {
    border: 2px solid black;
    background: black;
    color: white;
}

.form_attendance input[type="text"] {
    margin-top: 10px;
    cursor: text;
    padding: 5px 10px;
    height: 43px;
    width: 100%;
    font-size: 15px;
    font-weight: 400;
    border: 2px solid pink;
    border-radius: 5px;
}

/* ===== PRESENTS ===== */

.links_container {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
}

.links_container a {
    display: block;
    width: 100%;
    height: 70px;
    box-shadow: 0 1px 10px rgba(107, 72, 72, 0.3);
    margin-bottom: 35px;
    border-radius: 10px;
    overflow: hidden;
    transition: .3s ease-in-out all;
}

.links_container a:hover,
.links_container a:checked {
    box-shadow: 0 4px 18px rgba(107, 72, 72, 0.4);
    transform: translateY(-5px);
}


.links_container img {
    width: 70%;
    margin: 5px auto;
    display: block;
}

/* =========== FOOTER =========== */

footer {
    width: 100%;
    margin-top: 30px;
    padding: 30px 30px 60px;
    background: -webkit-linear-gradient(to left, #ee9ca7, #ffdde1);
    background: linear-gradient(to left, #ee9ca7, #ffdde1);
    text-align: center;
    color: white;
}

footer h2 {
    font-size: 27px;
    font-weight: 500;
    letter-spacing: .5pt;
    margin-bottom: 30px;
}

footer h3 {
    font-size: 20px;
    font-weight: 400;
    letter-spacing: .5pt;
    margin-bottom: 20px;
}

footer a {
    display: inline-block;
    width: 40px;
    height: 40px;
    padding: 5px;
    font-size: 22px;
    color: white;
    margin: 0 10px;
    border: 2px solid white;
    border-radius: 10px;
    transition: .3s ease-in-out all;
}

footer a:hover,
footer a:checked {
    color: #ee9ca7;
    background: white;
}

