@import url('https://fonts.cdnfonts.com/css/minecraftia');

body {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, transparent 70%, transparent 100%) no-repeat, url("https://images-wixmp-ed30a86b8c4ca887773594c2.wixmp.com/f/8ae1c281-ed89-448d-871b-a2e351a6ba6f/d3l1qoj-f1b1c676-9602-4c65-bd7d-ea518fbc8b88.png?token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJ1cm46YXBwOjdlMGQxODg5ODIyNjQzNzNhNWYwZDQxNWVhMGQyNmUwIiwiaXNzIjoidXJuOmFwcDo3ZTBkMTg4OTgyMjY0MzczYTVmMGQ0MTVlYTBkMjZlMCIsIm9iaiI6W1t7InBhdGgiOiJcL2ZcLzhhZTFjMjgxLWVkODktNDQ4ZC04NzFiLWEyZTM1MWE2YmE2ZlwvZDNsMXFvai1mMWIxYzY3Ni05NjAyLTRjNjUtYmQ3ZC1lYTUxOGZiYzhiODgucG5nIn1dXSwiYXVkIjpbInVybjpzZXJ2aWNlOmZpbGUuZG93bmxvYWQiXX0.uuol1k13qvT9fW-5cdwPSJOFq5rmqahGAxi7W4yJiVA");
    height: 80vh;
}

a {
    color: transparent;
}

button, .text {
    color: white;
    font-family: Minecraftia, "Fira Code", sans-serif;
}

button {
    border: none;
    padding: 20px 40px;
    background: url("../images/button.png") no-repeat center;
    background-size: cover;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

button:enabled {
    cursor: pointer;
}

button:focus-visible {
    outline: none;
}

button:hover {
    background-image: url("../images/button_hover.png");
}

.title {
    font-size: 3rem;
    text-align: center;
    margin: 200px;
}

#start_button {
    height: 3em;
    width: 25rem;
    font-size: 1rem;
    text-decoration: none;
    min-height: 60px;
    min-width: 500px;
    align-self: center;
    opacity: 0;
    animation: fadeIn 3s 1s forwards, slideIn2 2s 1s forwards ease-out;
}

#start {
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
}

#important {
    font-size: 5em;
    position: absolute;
    top: 32%;
    text-shadow: black 0 0 25px, black 0 0 15px, black 0 0 10px, black 0 0 5px;
}

#important_button {
    margin-top: 2em;
    min-width: 20em;
    width: 30%;
}

#important_img {
    margin-top: 5%;
}

#wait {
    width: 100%;
    height: 50%;
}

@media (orientation: portrait) {
    #important_button {
        margin-top: 20vh;
        font-size: 2em;
    }

    button {
        font-size: 1.5em;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideIn2 {
    0% {
        margin-top: 2em;
    }

    100% {
        margin-top: 0;
    }
}
