html{
    background-color: black;
    font-size: 50px;
}


*{
    align-self: center;
}


.body-content { 
    font-family: sans-serif;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

h1{
    font-size: 1rem;
    color: aquamarine;
}

h2{
    font-size: 0.5rem;
    color: white;
}

a{
    color: white;
}

p {
    color: tomato;
    font-size: 0.5rem;
    font-style: italic;
}

button {
    height: 100px;
    width: 200px;
    margin: 20px;
}

.redBackground{
    background-color: red;
}