*{
    padding: 0;
    margin: 0;
    font-family: "Caveat", serif;
}

body{
    height: 100vh;
    margin: 10px;
    background: rgb(39, 39, 39);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    overflow-y: visible;
    overflow-x: hidden;
}

h1{
    font-size: 50px;
}

h1,h2{
    text-align: center;
}

input{
    cursor: pointer;
}

input[type="number"]{
    width: 5ch;
    border: 1px solid grey;
    background: wheat;
    border-radius: 5px;
    outline: none;
    padding: 2px;
    cursor: text;
}

#hidbox1{
    visibility: hidden;
    z-index: -1;
}

#hidbox2{
    visibility: hidden;
    z-index: -2;
    position: absolute;
    top: 39.5%;
    width: 100vw;
    margin-left: 0;
}

#nameContainer{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
}

#names{
    width: 80%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
    row-gap: 15px;
    column-gap: 15px;
}

input[type="text"]{
    min-width: 100px;
    flex-grow: 1.1;
    outline: none;
    padding: 2px; 
    border: none;
    background: white;
    font-size: 15px;
}

input[type="checkbox"]{
    accent-color: yellowgreen;
}

#container{
    display: flex;
    justify-content: space-evenly;
    flex-direction: row;
    flex-wrap: wrap-reverse;
    gap: 5vw;
    width: 99%;
    margin-left: 2vw;
}

.goContainer{
    width: 100vw;
    display: flex;
    justify-content: center;
    align-items: center;
    align-self: center;
    margin-top: 50px;
}

.go{
    width: 10ch;
    aspect-ratio: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(to right,crimson, blue);
    border: 2px solid black;
    border-radius: 15px;
    transform: scale(0.9);
    cursor: pointer;
}

.go:hover, .go:active{
    transform: scale(1);
}

.card{
    height: 10ch;
    aspect-ratio: 1;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid grey;
    color: white;
    background: rgb(82, 77, 77);
}

h1,h2,h3,p{
    background: linear-gradient(to left, #FE03EE, #0DF4FA);
    background-clip: text;
    color: transparent;
}

@media only screen and (min-width: 321px){
    #hidbox2{
        top: 36%;
    }
}