body{
    font-family: 'Work Sans';
}
.topper{
    width: 100%;
    background-color: darkorange;
    color: #333333;
    height: 30px;
}
.in-topper{
    width: 100%;
    height: 30px;
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: flex-end;
    color: white;
    font-size: 14px;
}
.in-topper .material-symbols-outlined{
    font-size: 14px;
}
.header{
    width: 100%;
    border-bottom: solid thin orange;
    height: 70px;
}
.in-header{
    width: 100%;
    height: 70px;
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: center;
}
.logo{
    width: 30%;
}
.logo>img{
    height: 50px;
}
.menu{
    width: 70%;
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}
.btn-menu{
    appearance: none;
    border: none;
    height: 30px;
    color: #333333;
    padding-left: 10px;
    padding-right: 10px;
    font-family: 'Work Sans';
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    cursor: pointer;
}
.btn-special{
    background-color: darkorange;
    color: white;
    border-radius: 6px;
}
.btn-sm-menu{
    display: none;
}
.banner{
    width: 100%;
    aspect-ratio: 16/8;
    background-image: url(../images/oratorio-san-nicola-2025.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    align-content: center;
    flex-direction: column;
    padding-right: 40px;
}
.banner span:first-child{
    font-size: 6rem;
    color: white;
    font-family: 'Irish Grover';
}
.banner span:nth-child(2){
    font-size: 3rem;
    color: white;
    font-family: 'Irish Grover';
}
.btn-banner{
    -webkit-appearance: none;
    appearance: none;
    background-color: white;
    font-family: 'Work Sans';
    border: none;
    padding: 10px;
    padding-left: 20px;
    padding-right: 20px;
    text-transform: uppercase;
    font-weight: 500;
    border-radius: 10px;
}
.footer{
    width: 100%;
    padding-top: 40px;
    padding-bottom: 40px;
    background-color: #333333;
    color: white;
    font-weight: 200;
    font-size: 14px;
}
@media screen and (max-width:768px){
    .btn-menu{
        display: none;
    }
    .btn-special{
        display: flex;
    }
    .btn-sm-menu{
        display: flex;
    }
    .banner{
        align-items: flex-end;
        align-content: center;
        justify-content: flex-end;
        padding-bottom: 20px;
        aspect-ratio: 1/1;
        text-align: right;
    }
    .banner span:first-child{
        font-size: 4rem;
        color: white;
        font-family: 'Irish Grover';
    }
    .banner span:nth-child(2){
        font-size: 1.5rem;
        color: white;
        font-family: 'Irish Grover';
    }
}