/* CSS Reset */
body, header, main, footer, img, video, h1, h2, p, div, span {
    margin: 0;
    padding: 0;
    border: 0;
}

img, video {
    width: 100%;
}

.hero {
    display: flex;
    height: 50vh;
    background-image: linear-gradient(rgba(0, 0, 0, 0.35)), url("assets/banner.png");
    background-size: cover;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;

    h1 {
        margin: 16px;
        font-size: 72pt;
    }

    p {
        margin: 16px;
        font-size: 36pt;
    }
}

main, footer {
    padding: 32px;
    background-color: rgb(0, 10, 32);
    text-align: center;
    color: rgb(128, 150, 200);

    h2 {
        margin: 16px;
        font-size: 48pt;
    }

    p {
        margin: 16px;
        font-size: 36pt;
    }

    a {
        color: white;
    }

    .project {
        margin-bottom: 128px;
    }

    .project-button {
        margin: 64px;

        a {
            width: 50%;
            margin: 32px;
            border-radius: 8px;
            padding: 32px;
            background-color: white;
            color: black;
            font-size: 36pt;
            font-weight: bold;
            text-decoration-line: none;
            text-transform: uppercase;
        }
    }
}

footer {
    text-align: left;
}