* {
    font-family: "Roboto Mono", sans-serif;
}

body{
    background-image: url(resources/woodland.svg);
    background-size: cover;
}

h1 {
    text-align: center;
}

main {
    color: white;
    background-color: rgb(50, 58, 33);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    border: solid 5px grey;
    margin: 10px;
    padding: 10px;
    width: 75%;
    margin-left: auto;
    margin-right: auto;
}

article {
    background-color: sienna;
    font-size: larger;
    width: 50%;
    border: solid 5px grey;
    margin: 20px 10px;
    padding: 10px;
    box-shadow: 10px 10px 0px rgba(0, 0, 0, 0.75);
}

p {

}