.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;
}

@media only screen and (max-width: 500px) {
    h1 {
        font-size: 5vw;
    }
}

.top {
    position: absolute;
    top: 0px;
    left: 0px;

    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;

    background-color: #ffa4a3;
    border-bottom: 4px solid black;

    width: 100%;
    height: 20vw;
}

.top h1 {
    font-size: 5vw;
}

.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;
    
    
}

.seperator {
    position: absolute;
    top: calc(20vw + 4px);
    left: 0cm;

    background-color: #ff7d7d;
    
    width: 100%;
    height: 5px;
}

#seperator-2 {
    top: calc(20vw + 4px + 5px + 45vw);
}

.middle {
    position: absolute;
    left: 0cm;
    top: calc(20vw + 4px + 5px);


    display: flex;
    justify-content: center;
    


    width: 100%;

    text-align: right;

}

.image-cont {
    padding-left: 0.2cm;
}

.about-me-img {
    
    border: black solid 3px;
    border-radius: 3px;
    width: 25vw;
    
}

#am-img1 {
    top: calc(20vw + 4px + 5px + 25px);
}
#am-img2 {
    top: calc(20vw + 4px + 5px + 25px + 6.4cm);
}
#am-img3 {
    top: calc(20vw + 4px + 5px + 25px + 12cm);
    left: 5.8cm;
}
#am-img4 {
    top: calc(20vw + 4px + 5px + 25px + 12cm);
    left: 10.6cm;
    width: 65vw;
}


.middle h3 {
    padding-left: 0.5cm;
    padding-right: 0.5cm;
    font-weight: 500;
    font-size: smaller;
}


#logo-main-page {
    width: 60vw;
}




/* IPHONE SCREEN */

@media only screen and (max-width: 500px) {

    .seperator {
        top: 400px;
    }

    #seperator-2 {
        visibility: hidden;
    }

}