/* general styles */

body {
    min-height: 100vh;
    background-color: whitesmoke;
    font-family: 'Roboto', sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    margin-top: 30px;
    flex: 4 0 auto
}

footer {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #cfe2ff;
    flex: 1 0 auto;
    /*padding-top: 10px;*/
}

footer a {
  font-size: 2em;
  color: black;
  margin-left: 20px;
}

.form-container{
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 20px;
}

@media screen and (max-width: 768px){
    footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    }
}
