body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.container {
    width: 80%; /* Увеличиваем ширину контейнера */
    height: 80%; /* Увеличиваем высоту контейнера */
    text-align: center;
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden; /* Добавляем, чтобы точки не выходили за границы контейнера */
}

input {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 4px;
}

button {
    width: 100%;
    padding: 10px;
    background-color: #4CAF50;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    margin: 10px; /* Добавляем отступ между кнопками */
}

button:hover {
    background-color: #45a049;
}

.spider {
    width: 20px;
    height: 20px;
    background-color: #4CAF50;
    border-radius: 50%;
    position: absolute;
    cursor: pointer;
}

.cave {
    width: 20px;
    height: 20px;
    background-color: #FF5733;
    position: absolute;
    top: 10px;
    left: 10px;
}

.base {
    width: 20px;
    height: 20px;
    background-color: #3357FF;
    position: absolute;
    bottom: 10px;
    right: 10px;
}

.score {
    font-size: 24px;
    margin: 20px 0;
}

.timer {
    font-size: 18px;
    margin: 20px 0;
    color: red;
}

.email-display {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 14px;
    color: #555;
}

.logout {
    width: 100px;
    padding: 10px;
    background-color: #f44336;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    position: absolute;
    bottom: 20px;
    right: 20px;
}

.logout:hover {
    background-color: #e53935;
}

