@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

.btn {
    padding: 12px 28px;
    background-color: #e22a2a;
    border-radius: 10px;
    font-size: 25px;
    font-weight: 500;
    border: none;
    color: white;
    box-shadow: 0 0 10px #7a7a7a;
    transition: 0.2s ease;
}

.btn:hover {
    transform: scale(0.95);
}

button {
    cursor: pointer;
}

::selection {
    background-color: rgba(34, 192, 255, 0.4);
    color: white;
}

.welcome {
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.player-finish-content {
    width: 975px;
    height: 650px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background-color: #a5a5a5;
    border-radius: 50px;
    position: relative;
}

.welcome-content-warning {
    font-size: 22px;
    color: #e22a2a;
    font-weight: 600;
    position: absolute;
    top: 50px;
}

.welcome-content-header {
    font-size: 90px;
    font-weight: 600;
    color: white;
    height: 135px;
}

.welcome-content-text {
    font-size: 22px;
    font-weight: 500;
    color: #2b2b2b;
}

.welcome-content-btn-container {
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 12px;
    margin-top: 18px;
}

.login {
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-content {
    width: 975px;
    height: 650px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background-color: #a5a5a5;
    border-radius: 50px;
    position: relative;
}

.login-content-header {
    position: absolute;
    top: 30px;
    font-size: 70px;
    font-weight: 600;
    color: white;
}

.login-content-btn {
    position: absolute;
    bottom: 168px;
    border: none;
    height: 65px;
    width: 275px;
    border: none;
    border-radius: 10px;
    background-color: #a5a5a5;
    box-shadow: 0 0 10px #525252;
    color: white;
    font-size: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
}

.login-content-input {
    height: 55px;
    width: 525px;
    border: none;
    border-radius: 5px;
    padding: 10px;
    font-size: 22px;
}

.login-content-player1 {
    margin-bottom: 10px;
}

.game {
    height: 100vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: relative;
    background-color: #f6f6f6;
}

.game-header {
    position: absolute;
    top: 20px;
    font-size: 40px;
    font-weight: 600;
    color: #2b2b2b;
    z-index: 1;
}

.game-text {
    position: absolute;
    top: 75px;
    font-size: 22px;
    font-weight: 700;
    color: #2b2b2b;
    z-index: 1;
}

.game-text-name {
    color: #e22a2a;
}

.game-gun {
    position: relative;
    top: 35px;
}

.game-btn {
    height: 130px;
    width: 210px;
    border-radius: 40px;
    border: none;
    background-color: transparent;
    position: absolute;
    left: 50.2%;
    top: 48%;
}

.finish {
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.player-finish-content {
    width: 975px;
    height: 650px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background-color: #a5a5a5;
    border-radius: 50px;
}

.player-finish-content-header {
    font-size: 70px;
    color: #2b2b2b;
    margin-bottom: 10px;
    font-weight: 600;
}

.player-finish-content-btn-container {
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 12px;
}

.player-finish-content-btn {
    font-size: 26px;
}

.display {
    display: none;
}

@media only screen and (max-height: 450px) {
    .game-img {height: 300px;}
    .game-header {font-size: 25px;}
    .game-text {font-size: 16px; top: 58px;}
    .game-btn {height: 50px; width: 80px;}
    .player-finish-content {width: 575px; height: 350px;}
    .welcome-content-header {font-size: 70px; height: 100px;}
    .welcome-content-text {font-size: 20px;}
    .btn {font-size: 20px;}
    .login-content {width: 575px; height: 350px;}
    .login-content-btn {bottom: 40px; height: 55px; width: 250px; font-size: 32px;}
    .login-content-header {top: 10px; font-size: 60px;}
    .login-content-input {height: 45px; width: 500px;}
    .login-content-player1 {margin-bottom: 12px;}
    .player-finish-content-header {font-size: 65px;}
    .welcome-content-warning {display: none;}
}