* {
    margin: 0;
    padding: 0;
    text-align: center;
}
body {
    background-color: #9400d3;
    font-family: "Lexend", Arial, Helvetica, sans-serif;
    color: white;
    text-align: center;
    margin-top: 8rem;
    font-size: 16px;
}

#404 {
    font-size: 4rem;
}

#boltButton {
    position: fixed;
    top: 0.5rem;
    left: 0.5rem;
    width: 3rem;
    height: auto;
    z-index: 11;
    background-color: #9400d3;
    border-radius: 20%;
}

a {
    color: white;
}

header {
    z-index: 10;
    display: flex;
    position: fixed;
    top: 0;
    width: 100%;
    height: 8rem;
    background-color: #3e2f5b;
    justify-content: center;
    align-content: center;
}

header #headerName {
    width: 50%;
}

.banner {
    width: 80%;
    margin: 1rem auto;
    border-radius: 4rem;
    background-color: #3e2f5b;
    border: black 0.2rem solid;
}

.container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

section {
    padding: 1rem;
}

button {
    background-color: rgba(0,0,0,0);
    color: white;
    width: 17rem;
    border-radius: 5rem;
    font-size: 3rem;
    padding: 2rem 1rem;
    box-shadow: 0 0.5rem black;
    transition: box-shadow 0.2s;
}

button:hover {
    border-color: #9400d3;
    border-style: solid;
}
button:active {
    box-shadow: none;
}

#RPS {
    display: flex;
    flex-direction: column;
    align-items: center;
} 

#INFO {
    display: none;
    padding-top: 3rem;
}

@media only screen and (max-width: 450px) {
    body {
        font-size: 8px;
        margin-top: 0;
    }

    button {
        font-size: 1rem;
        padding: 0.5rem 1rem; 
        width: 6rem
    }

    header {
        display: none;
    }

    #boltButton {
        background-color: #3e2f5b;
        width: 1.5rem;
    }
}
