body {
    margin: 0;
    padding: 0;
}

a.button-location div:hover {
    background: #000000 !important;
    color: #FFFFFF !important;
}

.main-background {
    background-image: url(img/tapet_opacity_low.png);
    background-repeat: no-repeat;
    height: 100vh;
    width: 100%;
    z-index: -1;
    position: absolute;
}

.main-container {
    height: 100vh;
    width: 100%;

    display: flex;
    flex-direction: column;
    align-items: center;
}

.main-container .description {
    font-size: 25px;
    color: #000000;
    font-weight: 400;
    font-family: "Trocchi";
    text-align: center;
    margin-top: 38px;
}

.main-container .head-container {
    padding-top: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.main-container .title {
    max-width: 645px;
    width: 100%;
    font-size: 70px;
    line-height: 75px;
    color: #000000;
    font-weight: 400;
    font-family: "Trocchi";
    text-align: center;
    margin: 134px auto 15px auto;
}

.main-container .buttons {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.main-container a.button-location {
    text-decoration: none;
}

.main-container .button-location div {
    width: 431px;
    height: 89px;
    border-radius: 50px;
    filter: drop-shadow(0px 15px 12.5px rgba(1,1,1,0.1));
    background-color: #ffca38;
    border: 7px solid #ffffff;
    margin-top: 19px;

    font-size: 24px;
    color: #000000;
    font-weight: 400;
    font-family: "Trocchi";
    
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 16px;
    text-align: center;
}

@media screen and (max-width: 768px) {
    .main-container .title {
        font-size: 54px;
        line-height: 54px;
        margin: 96px auto 15px auto;
    }   
}

@media screen and (max-width: 425px) {
    .main-container .description {
        padding: 0 45px;
        font-size: 20px;
    } 

    .main-container .title {
        font-size: 35px;
        line-height: 46px;
        margin: 30px 45px 15px 45px;
        width: fit-content;
    }

    .main-container .button-location div {
        height: 76px;
        width: calc(100% - 90px);
        margin-left: auto;
        margin-right: auto;
        font-size: 19px;
        width: fit-content;
    }

    .main-container a.button-location {
        width: 100%;
    }
}