*
{
    margin: 0;
    padding: 0;
}
/* navigation-bar open */
nav
{
    display: block;
    padding: 1% 2%;
    justify-content: space-between;
    align-items: center;
    background: #FFFDC1;
}
.nav-links
{
    flex: 1;
    text-align: center;
}
.nav-links ul li
{
    list-style: none;
    display: inline-block;
    padding: 8px 12px;
    position: relative;
}
.nav-links ul li a
{
    text-decoration: none;
    font-size: 22px;
    font-weight: bold;
    font-family: 'Lobster Two', cursive;
    color: #764A34;
    transition: color;
}
.nav-links ul li a:hover
{
    color:rgb(84, 186, 80);
}
/* navigation-bar close */

/* about me open */
.about-text
{
    width: 100%;
    height: 80vh;
    background: whitesmoke;
}
.about-text .text-box
{
    position: relative;
    width: calc(710px - 10px);
    height: calc(500px - 30px);
    background: whitesmoke;
    float: left;
    margin: 30px;
    box-sizing: border-box;
    overflow: hidden;
    padding: 5%;
    text-align: left;
    font-size: 22px;
    font-family: 'Averia Serif Libre', cursive;
}
/* about me close */

/* footer open */
.footer
{
    position: relative;
    width: 100%;
    height: 66px;
    background: #62cd62;
    box-sizing: border-box;
    text-align: center;
}
/* footer close */