* {
    font-family: "Roboto", sans-serif;
}

html, body {
    height: 100%;
    margin: 0;
    background-color: #091525;
}

main {
    text-align: center;
}

.button {
    padding: 1em;
    border: none;
    cursor: pointer;
}

#top-banner {
    font-size: 1.5em;
    user-select: none;
    color: white;
    padding: 37vh 0;
    background-image: linear-gradient(#204479, #091525)
}

#top-banner button {
    font-size: 0.8em;
    border-radius: 1em;
    background-color: black;
    color: white;
    border: 2px solid white;
    box-shadow: 0 0 10px white;
}

#projects {
    height: 100%;
    text-align: left;
    padding: 20em;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-evenly;
}

.project {
    width: 20vw;
    height: 100%;
    padding: 2em;
    margin: 2em;
    background-color: #fff;
    box-shadow: 0 0 25px #204479;
}

.project h2 {
    margin: 0 0 1em 0;
}

.project img {
    width: 100%;
}