@import url("/demos/_vendor/google-fonts/css/855c1c87f4d02a8d.css");

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

html,
body {
    height: 100%;
}

body {
    font-family: "Poppins", sans-serif;
}

header {
    width: 100%;
    height: 15%;
    padding-top: 25px;
    background-color: #ecf0f1;
}

header h1 {
    text-align: center;
    margin: 0;
}

.container {
    position: relative;
    height: 85%;
    width: 100%;
    padding: 30px;
    background-color: #2c3e50;
}

.score-container {
    position: relative;
    margin: 0 auto;
    width: 150px;
    height: 40px;
    color: #fff;
}

#score {
    position: absolute;
    text-align: center;
    font-size: 30px;
    width: 100%;
}

.user {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translate(-50%, -50%);
    background-color: #e14a67;
    width: 40px;
    height: 15px;
    font-size: 10px;
    padding: 1px 10px;
}

.com {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translate(50%, -50%);
    background-color: #e14a67;
    width: 40px;
    height: 15px;
    font-size: 10px;
    padding: 1px 10px;
}

.buttons {
    width: 280px;
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
}

.btn {
    width: 80px;
    height: 80px;
    margin: 5px;
    border: 3px solid #34495e;
    border-radius: 50%;
    color: #34495e;
    font-size: 40px;
    background-color: #fff;
    cursor: pointer;
    outline: none;
    transition: 0.3s;
}

.btn:hover {
    background-color: #34495e;
    border-color: #fff;
    color: #fff;
}

#challenge {
    position: absolute;
    top: 43%;
    left: 50%;
    transform: translateX(-50%);
    width: 540px;
    height: 40%;
    display: inline-flex;
}

#you {
    position: relative;
    width: 37.5%;
    font-size: 50px;
}

#com {
    position: relative;
    width: 37.5%;
    font-size: 50px;
}

#yourObject {
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 110px;
    height: 110px;
    font-size: 50px;
    padding-top: 20px;
    border: 3px solid #34495e;
    border-radius: 50%;
    color: #34495e;
    background-color: #fff;
    text-align: center;
}

#comObject {
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 110px;
    height: 110px;
    font-size: 50px;
    padding-top: 20px;
    border: 3px solid #34495e;
    border-radius: 50%;
    color: #34495e;
    background-color: #fff;
    text-align: center;
}

#result {
    position: relative;
    width: 25%;
}

#result p {
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 30px;
    width: 100%;
    margin: 0;
    text-align: center;
}

.who {
    position: absolute;
    bottom: 5%;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    font-size: 30px;
}

.green {
    width: 70px;
    height: 70px;
    margin: 5px;
    border: 3px solid green;
    box-shadow: 0 0 10px green;
    border-radius: 50%;
    color: #34495e;
    font-size: 35px;
    background-color: #fff;
    cursor: pointer;
    outline: none;
    transition: 0.3s;
}

.red {
    width: 70px;
    height: 70px;
    margin: 5px;
    border: 3px solid red;
    box-shadow: 0 0 10px red;
    border-radius: 50%;
    color: #34495e;
    font-size: 35px;
    background-color: #fff;
    cursor: pointer;
    outline: none;
    transition: 0.3s;
}

.gray {
    width: 70px;
    height: 70px;
    margin: 5px;
    border: 3px solid #292928;
    box-shadow: 0 0 10px #292928;
    border-radius: 50%;
    color: #34495e;
    font-size: 35px;
    background-color: #fff;
    cursor: pointer;
    outline: none;
    transition: 0.3s;
}
