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

@font-face {
    font-family: 'protest-riot';
    src: url(../font/ProtestRiot-Regular.ttf);
}

body {
    background-color: #F8F8F8;
}

h1 {
    font-family: 'protest-riot';
    font-size: 50px;
    margin-top: 50px;
    text-align: center;
}

.container {
    width: 50%;
    margin: 70px auto;
    margin-bottom: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.result {
    width: 150px;
    height: 40px;
    border: 1px solid black;
    border-radius: 10px;
    font-family: 'protest-riot';
    padding: 5px;
    font-size: 20px;
    text-align: center;
    color: white;
    border: none;
}

#cvs {
    margin: 60px auto;
    background-color: #F8F8F8;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 15px;
    box-shadow: 0 0 10px 0 black;
    cursor: pointer;
}

.o {
    background-color: #50B6BB;
}

.x {
    background-color: #F96D15;
}

button {
    width: 250px;
    height: 40px;
    background-color: #206468;
    color: white;
    font-size: 20px;
    text-align: center;
    margin: 20px auto;
    cursor: pointer;
    border-radius: 10px;
    font-family: 'protest-riot';
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
}

button:hover {
    transform: scale(1.2);
    transition: 0.6s;

}

.modal {
    width: 100%;
    height: 100vh;
    font-size: 50px;
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.55);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transform: scale(0);
    transition: transform 0.4s;

}

.modal>img {
    width: 300px;
    height: 400px;
}