*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;;
}

.top{
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, #ff2c00, #F2D096);
}

.main{
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding-top: 2%;
    padding-bottom: 2%;
    height: 90vh;
}

#color{
    color: #c51616;
}

nav{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 100px;
    background-color: #B2E7E8;
}
nav ul li{
    list-style: none;
    display: inline-block;
    padding: 10px 20px;
}
nav ul li a{
    text-decoration: none;
    color: #304D63;
    transition-duration: 0.2s;
    font-weight: bold;
    letter-spacing: 2px;
}
nav ul li a:hover{
    color: #ED8975;
}

footer{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 20px 100px;
    background-color: #B2E7E8;
}
footer ul li{
    list-style: none;
    display: inline-block;
    padding: 10px 20px;
}
footer ul li a{
    text-decoration: none;
    color: #304D63;
    transition-duration: 0.2s;
    font-weight: bold;
    letter-spacing: 2px;
}
footer ul li a:hover{
    color: #ED8975;
}