@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@400;800&display=swap');

body {
    padding: 0;
    margin: 0;
    background: linear-gradient(60deg, #1CB5E0 0%, #000851 100%);
    font-family: 'Raleway', sans-serif;
    min-height: 100vh;
}

#main-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

#container {
    width: 366px;
    display: flex;
    flex-direction: column;
}

h1 {
    color: #FCFCFC;
}

#playgrid {
    width: 366px;
    height: 366px;
    display: flex;
    flex-wrap: wrap;
}

.box {
    width: 120px;
    height: 120px;
    background-color: #FCFCFC;
    border-radius: 10px;
    margin: 1px;
    display: flex;
    align-items: center;
    text-align: center;
    cursor: pointer;
}

.mark_x::before {
    content: "X";
    font-size: 100px;
    font-weight: 800;
    width: 100%;
    color: #A5CB3C;
    cursor: no-drop;
}

.mark_o::before {
    content: "O";
    font-size: 100px;
    font-weight: 800;
    width: 100%;
    color: #F76425;
    cursor: no-drop;
}

#container #btnreset {
    margin-top: 20px;
    justify-items: center;
}

#btnreset {
    background-color: bisque;
    padding: 10px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
}

#info {
    color: white;
    text-align: center;
    font-size: 40px;
    padding-bottom: 10px;
}