@font-face {
    font-family: helvetica;
    src: url(fonnts.com-Helvetica_Now_Display_W05_Light.ttf);
}
*{
    margin: 0;
    padding: 0;
    font-family: helvetica;
    box-sizing: border-box;
}
html, body{
    height: 100%;
    width: 100%;
}

#main{
    height: 100%;
    width: 100%;
    background-color: beige;
}

#nav{
    padding: 30px 100px;
}
#nav a{
    font-size: 20px;
    color: black;
    text-decoration: none;
    margin-right: 30px ;
}
#nav-center h3{
    position: absolute;
    top: 4%;
    left: 50%;
    font-size: 22px;
    font-weight: 900;
}
#nav-right{
    position: absolute;
    top: 30px; 
    right: 80px;
}

#main>h1{
    position: absolute;
    top: 0;
    font-size: 450px;
    font-weight: 500;
    padding-left: 70px;
}

#bottomleft{
    width: 250px;
    position: absolute;
    bottom: 18%;
    left: 4.5%;
    /* background-color: red; */
}
#bottomleft h3{
    font-size: 20px;
}
#bottomleft h4{
    margin-top: 30px;
    font-size: 20px;
}
#bottomleft p{
    font-size: 15px;
}

#bottombar{
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding: 15px 85px;
    position: absolute;
    bottom: 0;
    left: 0;
    font-size: 15px;
    /* background-color: red; */
}
#bottombar a{
    color: black;
    text-decoration: none;
    font-size: 27px;
    font-weight: 500;
}

#main>img{
    position: absolute;
}
#main #first{
    height: 350px;
    top: 45%;
    left: 25%;
    z-index: 1;
}
#main #second{
    height: 300px;
    top: 60%;
    left: 45%;
    z-index: 2;
}
#main #third{
    height: 300px;
    top: 50%;
    left: 60%;
    z-index: 3;
}