/*body*/
body{
    display: flex;
    flex-direction: column;
    align-items: center;

    background-color: rgb(249, 255, 239);
}
/*header*/
.header{
    height:3vh;
    width: 100vw;

    background-color: rgb(152, 175, 112);
}
/*nav*/
/*main*/
.main{
    display: flex;
    align-items: center;

    height:90vh;
}
.logotype img{
    display: flex;
    flex-direction: column;

    justify-self: center;

    width:80vw;

    margin-left: -5vw;
}
p{
    display: none;
}

/*footer*/
.footer{
    display: flex;
    justify-content: space-between;

    background-color: rgb(152, 175, 112);
    position: absolute;
    bottom:0;
    width: 100vw;
    height: 3vh;
    font-size: 1.7vh;
}
.socialBtn{
    color: rgb(41, 41, 41);

    text-decoration: none;

    margin-left: 5px;
}
.socialBtn:hover{
    color: rgb(94, 138, 19);
}