body{
    margin: 0;
    background-color: black;
    color: white;
    height: 800px;
    font-family: 'Roboto Mono', monospace;
}

#fakeBody{
    display: grid;
    grid-template-rows: 50px 800px 50px;
    height: 800px;
}

header{
    grid-row: 1;
    width: 100%;
    height: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #000000;
    position: fixed;
    z-index: 1;
}

#logo{
    margin-left: 30px;
    font-size: 25px;
}

nav{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-right: 30px;
}

nav>div{
    display: flex;
    flex-direction: column;
    align-items: center;
}

header>nav>div>div{
    height: 2px;
    width: 60px;
}

.menu1{
    animation: linha 1s forwards alternate;
}

.menu2{
    animation: linha2 1s forwards alternate;
} 

nav>div>a{
    display: inline-block;
    text-decoration: none;
    color: white;
    margin-right: 20px;
    margin-left: 20px;
    font-size: 25px;
}

#content{
    grid-row: 2;
    display: flex;
    justify-content: center;
}

form{
    margin-top: 100px;
    background-color: rgba(38, 208, 205, 0.534);
    width: 850px;
    height: 380px;
    border-radius: 10px;
}

input {
    margin-left: 35px;
    width: 90%;
    border-radius: 10px;
    background-color: #000000;
    color: white;
    border: 0ch;
}

#submit{
    width: 100px;
}

#mensagem{
    height: 200px;
}

footer{
    grid-row: 3;
    background-color: #26D0CE;
    width: 100%;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}

@keyframes linha {
    from {transform: scaleX(0);
          background-color: #26D0CE;}
    to {transform: scaleX(1);
        background-color:#26D0CE;}
}

@keyframes linha2 {
    from {transform: scaleX(1);
          background-color:#26D0CE;}
    to {transform: scaleX(0);
        background-color:#26D0CE;}
}
