body {
    position: relative;
    margin: 0;
    font-family: "Ubuntu", sans-serif;
    background-color: #000;
    height: 100svh;
    text-align: center;
    padding: 0 20px;

    /* Background */
    background-image: url('resources/img/default-hero.webp');
    background-position: center center;
    background-size: cover;

    /* Center everything in body */
    display: flex;
    align-items: center;
}

.container {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

.overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.box {
    background: rgba(0, 0, 0, 0.6);
    border-radius: 16px;
    padding: 32px;
    color: #fff;
}

h1 {

    margin-bottom: 0;
    line-height: 1.2;

    font-weight: 400;
    font-size: 1.2rem;

    @media (min-width: 600px) {
        font-size: 1.4rem;
    }

    @media (min-width: 800px) {
        font-size: 2rem;
    }

    @media (min-width: 1000px) {
        font-size: 2.2rem;
    }

    @media (min-width: 1200px) {
        font-size: 2.4rem;
    }
}

p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.site-logo {
    max-width: 100%;
    height: auto;

    @media (min-width: 400px) {
        max-width: 280px;
    }
}
