:root {
    --bstay: rgba(0, 119, 182, 0.2);
    --bstay-full: rgba(0, 119, 182, 1);
    --grey: rgb(180,180,180);
}

body {
    background-color: black;
    background-image:
            repeating-linear-gradient(
                    -45deg,
                    transparent 0 15px,
                    var(--bstay) 15px 20px
            );
    color: var(--grey);
    margin: 0;
    padding: 0;
}

#title {
    font-family: Impact, sans-serif;
    font-size: 4em;
    font-weight: 200;
    cursor: none;
}

h1 {
    cursor: none;
    margin: 0;
}

#container {
    display: flex;
    justify-content: center;
    height: 100vh;
    flex-direction: column;
    align-items: center;
}

hr {
    width: 70vw;
}

#titleContainer {
    margin-bottom: 10px;
    height: max-content;
    min-height: 12vh;
    max-height: max-content;
    text-align: center;

}

img {
    position: absolute;
    width: 10vw;
    max-width: 100px;
    height: auto;
    top: 20px;
    left: 20px;
}

button {
    border: none;
    min-width: 20%;
    max-width: 40%;
    width: 10vw;
    background-color: var(--bstay-full);
    color: var(--grey);
    font-size: 1.5rem;
    padding: 0.8rem;
    border-radius: 20px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    position: relative;
}

button:hover p {
    opacity: 0;
    transition: opacity 0.2s ease-in-out;
}

button:hover::before {
    opacity: 1;
}

button::before {
    content: "";
    position: absolute;
    inset: 0;

    background-image: url("bstay.svg");
    background-size: 80% 80%;
    background-repeat: no-repeat;
    background-position: center;

    opacity: 0;

    transition: opacity 0.3s ease;
    z-index: 0;
}


@media (max-width: 500px) {
    button {
        width: 50vw;
        max-width: 90%;
    }
    img {
        width: 20vw;
        max-width: 20%;
    }
}

button p {
    padding: 0;
    margin: 0;
}