*,
*::after,
*::before {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

main {
    width: 90%;
    margin: 0 auto;
    height: 500px;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 1rem;
}

p {
    font-family: "Quicksand", sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 1.3rem;
}

header {

}

h1 {
    font-family: "Quicksand", sans-serif;
    font-weight: 800;
    font-style: normal;
    font-size: 4rem;
}

.header__div {
    width: 90%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    margin-bottom: 2rem;
}

.board {
    display: grid;
    grid-template-rows: repeat(3, 150px);
    grid-template-columns: repeat(3, 160px);
    min-width: 30rem;
    margin: 0 auto;
    column-gap: 10px;
    row-gap: 10px;
}

.board__cell {
    background-color: lightgrey;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.board__cell:hover {
    cursor: pointer;
}

.profile-pic {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
}

.img-svg {
}

.x-simbol {
    width: 65%;
}

.o-simbol {
    width: 95%;
}