body{
    background-color:#fcfcfc;
    font-family: 'Coolvetica', sans-serif;
}

.card{
    width: 30%;
    margin: auto;
    margin-top: 20%;
    display: block;
    animation-name: floating;
animation-duration: 3s;
animation-iteration-count: infinite;
animation-timing-function: ease-in-out;
}

@keyframes floating {
0% { transform: translate(0, 0px); }
50% { transform: translate(0, 8px); }
100% { transform: translate(0, -0px); }
}




.container{
    width: 49%;
    margin: auto;
}

a:link {
  color: #ff7dff;
  background-color: transparent;
  text-decoration: none;
}
a:visited {
  color: #ff7dff;
  background-color: transparent;
  text-decoration: none;
    }

.menu{
    display: flex;
    color: #ff7dff;
    flex-direction: row;
    justify-content: space-evenly;
    border-radius: 10%;
    padding: 10px;
    }

.button{
    width: 88px;
    margin: auto;
    display: block;
    margin-top: 5%;
}

.textarea{
    width: 10%;
    margin: auto;
    display: block;
   margin-top: 1%;
}