html {
    margin: 0;
    background-color: black;
    font-family: "Lugrasimo", cursive;
}

body {
    background-color: black;
    background-image: url('bg.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    height: 100vh;
    margin: 0;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

h1 {
    margin: 0;
    color: white;
}

button {
    border: 1px solid white;
    background-color: transparent;
    color: white;
    margin-top: 30px;
    width: 150px;
    height: 30px;
    cursor: pointer;
    font-family: "Lugrasimo", cursive;
    position: absolute;
    bottom: 0px;
}

button:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

div {
    opacity: 0;
    visibility: hidden;
    transition: opacity 1.5s ease;
    flex-direction: column;
    align-items: center;
    position: absolute;
    height: 780px;
    justify-content: center;
}

p {
    color: white;
    font-size: 20px;
    margin: 5px;
}

br {
    margin: 14px;
}

.visible {
    opacity: 1;
    visibility: visible;
    display: flex;
}

@media screen and (max-width: 1023px) {
    h1 {
        font-size: 72px;
    }

    p {
        font-size: 36px;
    }

    button {
        font-size: 32px;
        bottom: -200px;
        width: 300px;
        height: 70px;
        border: 3px solid white;
    }
}