@font-face {
    font-family: 'Audiowide';
    src: url('Audiowide-Regular.ttf') format('truetype');
}

* {
    box-sizing: border-box;
}

html, body {
    height: 100%;
    width: 100%;
    margin: 0;
    padding: 0;
}

html {
    font-size: 62.5%;
}

body {
    font-size: 1.8rem;
    font-family: 'Audiowide', sans-serif;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    padding: 2rem;
    text-align: center;
    background-color: #000;
    background-image: url('airsoft-4498478_1920.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: -1;
}

img {
    max-width: 50vw;
    max-height: 50vh;
}

p {
    margin: 0.5em 0 0;
    line-height: 1.25;
}

a {
    color: white;
}

a:hover {
    color: #ff0000;
}