*{
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
}
html{
    scroll-behavior: smooth;
}
body{
    font-size: 100%;
    /*background: linear-gradient(#2b1055, #7597de);*/
}
div, section, span, ul, li, a, header{
    box-sizing: bordex-box;
}
header{
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 20px 50px;
    align-items: center;
    position: fixed;
    z-index: 999;
}
#menu li{
    list-style: none;
    display: inline-block;
    margin: 20px;
}
#menu li a{
    color: #EEEEEE;
    text-decoration: none;
    font-size: 20px;
}
#menu li a:hover{
    color: #b7e4c7;
    text-decoration: none;
    font-size: 20px;
}
section{
    width: 100%;
    float: left;
    height: 100vh;
    position: relative;
}

#home{
    background-color: #1b4332;
}
#aboutme{
    background-color: #2d6a4f;
}
#contactme{
    background-color: #40916c;
}
h1{
    position: absolute;
    top: 15%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #EEEEEE;
}
p{
    position: absolute;
    top: 40%;
    margin: 50px;
    color: #EEEEEE;
    text-align: justify;
}
address{
    font-size: 20px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #EEEEEE;
    text-align: justify;
}
address a:link{
    text-decoration: none;
    color: inherit;
}
address a:hover{
    color: #b7e4c7;
    text-decoration: none;
    font-size: 20px;
}