@import url(plank.css);
@import url(satoshi.css);


body {
    background-color: rgb(0, 0, 0);
    text-align: center;
    justify-content: center;
    align-items: center;
    display: flexbox;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

h1 {
    color: rgb(255, 255, 255);
    font-size: 5vw;
    margin-top: 20px;
    font-family: Planet-Kosmos;
    user-select: none;
}

.container {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    margin-top: 20px;
    border-radius: 25px;
    background-color: rgba(255, 255, 255, 0.123);
    border-color: rgba(107, 107, 107, 0);
    border-style: solid;
    max-width: 30vw;
    max-height: 70vh;
    height: 70vh;
    margin-left: 35%;
    box-shadow: 0px 0px 20px rgba(255, 255, 255, 0.5);
}

button {
    display: flex;
    align-items: center;
    justify-content: flex-start; 
    gap: 1vw;
    background-color: rgba(189, 189, 189, 0.158);
    max-width: 27vw;
    max-height: 12vh;
    height: 12vh;
    width: 27vw;
    border-radius: 25px;
    border-color: rgba(54, 54, 54, 0.212);
    border-style: solid;
    transition: border-color 0.2s, box-shadow 0.5s;
    padding-left: 1vw; 
    
}

button:hover {
    border-color: rgba(255, 255, 255, 0.281);
    border-style: solid;
    cursor: pointer;
    box-shadow: 0px 0px 10px rgba(255, 255, 255, 0.5);
}

button img {
    height: 8vh;
    width: 5vw;
    object-fit: contain;
    margin-right: 0; 
    margin-left: 0;  
    display: block;
    user-select: none;
}

button span {
    color: rgb(255, 255, 255);
    font-size: 2vw;
    font-family: Satoshi-black;
    user-select: none;
    margin-left: 4vw; 
}

a {
    text-decoration: none;
}

@media only screen and (max-width: 800px) {
    h1 {
        font-size: 10vw;
        margin-top: 5vh;
        margin-bottom: 10vh;
    }

    .container {
        max-width: 90vw;
        margin: 3vw;
        height: auto;
        max-height: none;
        box-sizing: border-box;
        max-height: 60vh;
        height: 60vh;
        width: 90vw;
    }
    button {
        max-width: 85vw;
        width: 85vw;
        height: 10vh;
        max-height: 10vh;
        padding-left: 2vw;
    }
    button img {
        height: 10vh;
        width: 10vw;
        margin-left: 20px;
    }
    button span {
        font-size: 5vw;
        margin-left: 80px;
    }
    h1 {
        font-size: 10vw;
    }

    a {
        text-decoration: none;
    }
}