@font-face {
    font-family: 'MPF';
    src: url(fonts/MPF\ DOTIMPACT.ttf);
}

@font-face {
    font-family: 'White Storm';
    src: url(fonts/White\ Storm.otf);
}

@font-face {
    font-family: 'Shine';
    src: url(fonts/ShineTypewriter.ttf);
}

body {
    background-color: black;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    overflow: hidden;
    filter: blur(10px);
    transition: filter 1.5s ease;
}

body.loaded {
    filter: blur(0);
}

.container {
    background-color: #313131;
    padding: 30px;
    border-radius: 5px;
    border: 2px outset gray;
}

.container a {
    text-decoration: none;
    color: black;
}

.container h1 {
    background-color: #242424;
    padding: 7px;
    border-radius: 5px;
    border: 2px outset white;
    text-align: center;
    font-family: 'Shine';
    user-select: none;
}

p {
    font-family: 'Shine';
    user-select: none;
}

a {
    text-align: center;
    font-family: 'Shine';
    transition: all 0.3s ease;
    user-select: none;
}

a:hover {
    color: white;
}

button {
    padding: 10px;
    border: none;
    border-radius: 5px;
    transition: all 0.3s ease;
    
}


button:hover {
    background-color: #6f2323;
    transform: scale(1.1);
    color: white;
}

.button__flex {
    display: flex;
    gap: 20px;
    justify-content: center;
}