@font-face {
    font-family: 'minecraftiaregular';
    src: url('font/minecraftia-webfont.woff2') format('woff2'),
        url('font/minecraftia-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

:root {
    --wrapper-color: rgba(10, 10, 10, 0.45);
}

html,
body {
    margin: 0;
}

html {
    font-family: 'MinecraftiaRegular';
    font-size: 16px;
    color: white
}

body {
    position: relative;
    background-image: url('media/dirt.jpg');
    background-repeat: repeat;
    background-size: 4rem;
    background-color: #0e0e0e;
}

body::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: var(--wrapper-color);
    z-index: -1;
}

#wrapper {
    padding: 2rem;
    background-color: var(--wrapper-color);
    backdrop-filter: blur(3px);
    max-width: 60rem;
    margin: 0 auto;
    overflow: hidden;
    box-shadow: 0 0 4rem 1rem rgba(0, 0, 0, 0.5);
}

.title {
    margin: 1rem 0;
    margin-top: 15rem;
    background-color: #181616;
    padding: 0.5rem 1rem;
}

.dots {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    margin-top: 3rem;
    margin-bottom: 10rem;
}

.dot {
    width: 0.6rem;
    height: 0.6rem;
    border-radius: 50%;
    background-color: #fff;
}

h1,
h2 {
    font-weight: normal;
    text-align: center;
    margin: 0;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 1.5rem;
}

p {
    padding: 0.5rem 1rem;
    margin: 1rem auto;
    background-color: #1b1b1b;
}

.media {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1rem;
}

video {
    width: 100%;
    margin: auto;
}

footer{
    margin-top: 5rem;
    text-align: center;
}