@font-face {
  font-family: "MinecraftTen";
  src: url("/MinecraftTen.ttf");
}

body {
    margin: 0 auto;
    background-image: url('background-image.jpg'); /* Замените на путь к вашей картинке */
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
}

.content {
    background: rgba(25,25,25, 0.5);
    font-family: 'Custom', Arial, sans-serif;
    color: #333;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0 auto;
    padding: 20px;
}

.status-container {
    background-color: #8d92cee0;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 500px;
    max-width: 90%;
    text-align: center;
    margin-bottom: 20px;
}

.players-list {
    list-style-type: none;
    padding: 0;
}

.progress-bar {
    width: 100%;
    background-color: #ddd;
    border-radius: 5px;
    overflow: hidden;
    margin-top: 10px;
}

.progress {
    height: 20px;
    background-color: #4caf50;
    width: 0;
}

.status-iframe {
    width: 80%;
    max-width: 800px;
    height: 600px;
    border: none;
}

@media (max-width: 768px) {
    .status-container {
        width: 90%;
        padding: 15px;
    }

    .status-iframe {
        width: 90%;
       ## height: 300px;
    }

    .content {
        height: auto;
        padding: 10px;
    }
}

@media (max-width: 480px) {
    .status-container {
        width: 95%;
        padding: 10px;
    }

    .status-iframe {
        width: 95%;
       # height: 250px;
    }

    .content {
        padding: 5px;
    }
}
a {
font-size: 20px;
color: white;
}
