@keyframes fade {
    0% { opacity: 0 }
    100% { opacity: 1 }
  }
main {
    display: flex;
    flex-flow: column wrap;
    justify-content: space-evenly;
    animation: fade 0.5s linear;
    align-items: center;
    gap : 10px;
    width : 100%;
    height: 85vh;
}


fieldset{
    border:2px solid rgb(26, 129, 0);
    -moz-border-radius:8px;
    -webkit-border-radius:8px;	
    border-radius:8px;	
    margin: 15px;
    display: flex;
    flex-flow: column wrap;
    justify-content: space-evenly;
    align-items: center;
    gap : 10px;
}

input, button {
    display: block;
}

a:link {
    text-decoration: none;
  }

footer {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-evenly;
    animation: fade 0.5s linear;
    align-items: center;
    gap : 10px;
    width : 100%;
}

legend {
    font-weight: bold;
}


