@import url(./reset.css);

:root {
    --app-background-color: #181720;
    --app-blue: #0067ff;
    --app-blue-hover: #0057d8;
  }

body {
    font-family: 'Nunito Sans', 'Open Sans', Arial, sans-serif;
    background-color: var(--app-background-color);
    position: relative; 
}

.container { 
    width: min(100% - 30px, 1080px);
    margin-inline: auto;
}

h1, p, i {
    color: #fff;
}

.center {
    min-width: 100%;
    height: 100dvh;
    display: grid;
    place-items: center;
}

.flex {
    display: flex;
}

.gap-20 {
    gap: 20;
}

select {
    width: 200px;
    height: 40px;
    border-radius: 6px;
    background-color: rgb(255 255 255 / 0.05);
    margin-right: 10px;
    color: #fff;
    padding-left: 10px;
}

select option {
    color: #000;
}


input[type=button] {
    width: 120px;
    height: 40px;
    text-align: center;
    background-color: var(--app-blue);
    border-radius: 50px;
    font-size: 17px;
    font-weight: 800;
    color: #fff;
    transition: all 0.25s ease-in-out;
}

input[type=button]:hover {
    background-color: var(--app-blue-hover);
}

.grid-box {
    height: 460px;
    width: 560px;
    background-color: rgb(255 255 255 / 0.05);
    margin-top: 15px;
    border-radius: 6px;
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: repeat(4, 1fr);
    padding: 10px;
    transform: rotateX(180deg);
    overflow: hidden;
}


.figure-square {
    width: 100px;
    height: 100px;
    border-radius: 3px;
    cursor: pointer;
}

.figure-circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    cursor: pointer;
}

.message {
    margin-top: 20px;
    text-align: center;
    height: 30px;
}

.message span {
    color: #f00;
}