.root-page {
    background-color: #fecccb;
}

* {
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

a {
    color: black;
    text-decoration: none;
}

h1 {
    font-size: 4vw;
    font-weight: 500;
}

h2 {
    font-size: 3.2vw;
}

h3 {
    font-size: 2.5;
}

@media only screen and (max-width: 500px) {
    h1 {
        font-size: 5vw;
    }

    #price-main-page {
        width: 30vw;
    }
}

.top {
    position: absolute;
    top: 0px;
    left: 0px;

    display: flex;
    flex-direction: row;

    width: 100%;
    height: 20vw;
}

.top-container {
    display: flex;

    background-color: #ffa4a3;
    border: 2px solid black;

    width: 100%;
    height: 100%;

    padding: 0px;

    justify-content: center;
    align-items: center;
    text-align: center;

}

@keyframes top-container-animation {
    to {background-color: #ff7d7d;}
}

.top-container:hover {
    animation-name: top-container-animation;
    animation-duration: 1s;
    animation-delay: 0.2s;
}

.top-images-container {
    display: flex;
}

#massage-img {
    width: 40vw;
    border: solid black 3px;
}

.seperator {
    position: absolute;
    top: calc(20vw + 4px);
    left: 0cm;

    background-color: #ff7d7d;
    
    width: 100%;
    height: 5px;
}

#voucher-note {
    position: absolute;
    top: calc(20vw + 4px + 5px);

    width: 100%;
    text-align: center;
    
    font-weight: 500;
    font-size: 3vw;
}
#seperator-2 {
    top: calc(20vw + 4px + 5px + 45vw);
    visibility: hidden;
}

.middle {
    position: absolute;
    left: 0cm;
    top: calc(20vw + 4px + 5px);


    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    width: 100%;

}

.price-list-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row-reverse;

    width: 100%;
    text-align: center;

}

#logo-main-page {
    width: 60vw;
}

#price-main-page {
    width: 45vw;
    padding:10px;
}

.bottom {
    position:absolute;
    top: 180vw;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    width: 100%;
}

#footer-link {
    color: rgb(36, 138, 255);
    text-decoration: underline;
}


@media only screen and (min-width: 1200px) {

    .top {
        height: 100%;
        width: 20vw;
        flex-flow: column;
    }

    .middle {
        left: 20vw;
        top: 0cm;
    }
    
    #logo-main-page {
        position: absolute;
        top: 0px;
        right: 0px;

        width: 30vw
    }
        
    h1 {
        font-size: 3.4vw;
    }

    #voucher-note {
        position: absolute;
        top: 35vw;
        left: 5vw;
        font-size: 2vw;
    }

    .seperator {
        visibility: hidden;
    }

    #price-main-page {
        position: absolute;
        left: 3vw;
        top: 4vw;

        width: 20vw;
        max-width: 700px
    }

    #massage-img {
        position: absolute;
        left: 35vw;
        top: 4vw;
        width: 20vw;
    }


}

/* IPHONE SCREEN */

@media only screen and (max-width: 500px) {

    .top {
        height: 400px;
        flex-flow: column;
    }

    .seperator {
        top: 400px;
    }

    #voucher-note {
        top: 405px;
    }

    .middle {
        top: 400px;

    }

    #seperator-2 {
        visibility: hidden;
    }

    .bottom {
        top: 1200px;
    }

}