@font-face {
    font-family: 'Comicoro';
    src: url('assets/fonts/Comicoro.ttf') format('truetype');
}

body {
    background-image: url('assets/images/muppled site bg.png');
    background-size: auto auto;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center;
    background-color: black;
    margin: 0;
    padding: 0;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    image-rendering: pixelated;
    -webkit-image-rendering: pixelated;
}

.button {
    font-family: 'Comicoro', sans-serif;
    font-size: 36px;
    padding: 5px 15px;
    background-color: rgba(0, 0, 0, 0.5);
    color: #ffffff;
    text-decoration: none;
    border: 5px solid #ffffff;
    border-radius: 0px;
    margin-top: 200px;
    transition: background-color 0.3s, color 0.3s, border-style 0.3s;
}

.button:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: 5px dashed #ffffff;
}

@media (min-width: 1921px), (min-height: 1081px) {
    body {
        background-size: 200% auto;
    }
    .button {
        font-size: 72px;
        padding: 10px 30px;
        border: 10px solid #ffffff;
        margin-top: 600px;
    }
    .button:hover {
        border: 10px dashed #ffffff;
    }
}