@import "reset.css";

* {
    user-select: none;
}

body {
    width: 1300px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

/* PAGE START GAME */
.start-game {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 350px;
    height: 400px;
    font-size: 40px;
    font-weight: bold;
    line-height: 50px;
    padding-top: 20px;
    background-color: rgb(96, 164, 241);
    border-radius: 10px;
    color: rgb(0, 0, 0);
}

.start-game button {
    display: block;
    width: 250px;
    height: 50px;
    margin: auto;
    margin-top: 35px;
    border-radius: 40px;
    border: none;
    background-color: rgb(235, 235, 235);
    font-size: 18px;
}

.start-game button:hover {
    cursor: pointer;
    opacity: 0.6;
}

/* ITEM STYLES */
.container {
    width: 670px;
    height: 670px;
    margin: auto;
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.item {
    width: 150px;
    height: 150px;
    margin: 2px;
    background-color: #03bb13;
    /* background-color: antiquewhite; */
    display: flex;
    justify-content: center;
    align-items: center;
}

.item:hover {
    cursor: pointer;
    opacity: 0.5;
}

.item svg {
    font-size: 80px;
    flex-basis: 25%;
    background-color: transparent;
    color: #03bb13;
}