﻿.container1 {
    display: grid;
    grid-template-rows: repeat(3, 10vw);
    grid-template-columns: repeat(3, 10vw);
    font-family: sans-serif;
    position: relative;
    height: 98px;
    justify-content: center;
    margin-left: 81px;
}

.box {
    border: 2px solid #ecd7ba;
    font-size: 8vw;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #11213a;
    color: #04c0b2;
}

@media screen and (max-width: 950px) {
    .container1 {
        grid-template-rows: repeat(3, 20vw);
        grid-template-columns: repeat(3, 20vw);
    }
}

.btn {
    margin-top: 27%;
    padding-top:8px;
    padding-bottom:8px;
    padding-left:17px;
    padding-right:17px;
    font-size:larger;
    color:white;
    border:none;
    background-color:darkorchid;
    margin-left:28%;
}

.tictactoe {
    font-size: 35px;
    text-align: center;
    color: crimson;
    margin-left:75px;
}

.status {
    font-size: 45px;
    margin-left: 7%;
    color: crimson;
}

@media screen and (max-width: 950px) {
    .btn {
        margin-top:44%;
        margin-left:-13px;
    }
}

@media screen and (max-width: 950px) {
    .status {
        font-size: 23px;
    }
}

@media screen and (max-width: 950px) {
    .container1 {
        margin-right:72px;
    }
    .tictactoe{
        margin-left:2px;
    }
}


.form-popup {
    display: none;
    position: fixed;
    bottom: 0;
    right: 15px;
    border: 3px solid #f1f1f1;
    z-index: 9;
}

.form-container {
    max-width: 300px;
    padding: 10px;
    background-color: white;
}
