@import url('https://fonts.googleapis.com/css2?family=League+Gothic&family=Poppins:wght@100;300;400;500;600;700;900&display=swap');

html,
body {
    margin: 0;
    height: 100%;
}

body {
    color: white;
    text-align: center;
    font-family: 'Poppins', sans-serif;

    background: url("background.png") no-repeat center / cover;

    display: flex;
    justify-content: center;
    align-items: center;

    position: relative;
    z-index: 0;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    z-index: 0;
}

body>* {
    position: relative;
    z-index: 1;
}

body>div {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

h1 {
    margin: 0;
    font-size: 55px;
    font-weight: 800;
}

p {
    margin: 0;
    font-size: 20px;
    opacity: 0.85;
}

p:last-child {
    margin-top: 20px;
    font-size: 15px;
    opacity: 0.5;
}