html{
    font-family: 'Italiana','Arsenal','Cinzel','Comfortaa','Montserrat','Raleway', sans-serif;
}
main{
    width: 100vw;
    position: relative;
    --gold: #ffd978;
    --lightBrown1: rgb(189, 149, 122);
    --lightBrown2: rgb(175, 165, 142);
    --lightBrown3: rgb(215, 173, 136);
    --lightBrown4: rgb(213, 189, 157);
}
svg{
    overflow: inherit;
}
nav{
    background: #a7a7a7;
}
.main_title{
    width: 100%;
    text-align: center;
}
.main_title > div{
    width: 60%;
    padding: 10px 20px;
    margin: 0 auto;
}

.tutorials_text{
    width: 80%;
    margin: 5% auto;
    text-align: center;
}
.tutorials_text_title{
    margin:  0 0 30px 0;
}

.tutorials_title{
    width: 100%;
    margin: 30px auto 7% auto;
    text-align: center;
}
.days{
    width: 90%;
    margin: 10% auto 0 auto;
    padding: 2% 5%;
    box-shadow: 0 0 12px 0 rgba(95, 99, 103, 0.4);
    position: relative;
    max-width: 1024px;
    background-color: #FFFFFF;
}
.days_title{
    position: absolute;
    top:4%;
}
.day{
    text-align: center;
    margin-bottom: 10%;
}
.day_title{
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 40px auto;
    gap: 10px;
}
.day_text{
    margin: 4% auto 2% auto;
    width: 80%;
}
.day_list{
    margin: 5% auto;
    width: 55%;
}
.day_list li{
    margin: 4% 0;
}
#button_to_procedure{
    text-decoration: none;
    color: black;
    cursor: pointer;
    position: relative;
    margin: 20px auto;
    padding: 20px 20px;
    border: none;
    background-color: transparent;
    display: flex;
    justify-content: center;
    width: 40%;
    text-align: center;
    transition: all 0.2s ease-in-out;
}
#button_to_procedure:after{
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: #46322b;
    content: "";
    transition: background-color 0.2s ease-out;
}
#button_to_procedure:hover:after, #button_to_procedure:focus:after{
    background-color: #fcedd3;
}




@media screen and (max-width: 800px) {

    .main_title > div{
        width: 80%;
    }

    #button_to_procedure{
        width: 80%;
    }
}
@media screen and (max-width: 600px){

    .paginator_container{
        position: absolute;
        bottom: -10%;
        width: 100%;
    }
}