* {
    font-family: "Comfortaa", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
}

body {
    margin: 0;
    padding: 0;
    background-color: #111111;
    color: #dddddd;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    opacity: 0;
    animation: fadeIn 1s forwards;
    flex-direction: column;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.home-button {
    position: fixed;
    top: 10px;
    left: 20px;
    z-index: 9999;
}

.home-button-arrow {
    padding: 10px;
    background-color: transparent;
    color: #ffffff;
    border: none;
    cursor: pointer;
    transition: color 0.3s ease;
}

.home-button-arrow:hover {
    color: #3498db;
}

button {
    padding: 10px 20px;
    font-size: 16px;
    background-color: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #e74c3c;
}

button:active {
    background-color: #3498db;
}

.logo-pro-nas {
    width: 1320px;
    height: 340px;
    position: fixed;
    top: 20px;
    left: 115px;
}

.button-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 400px;
}

.button-container img {
    width: 100px;
    height: auto;
    cursor: pointer;
    transition: transform 0.3s ease;
    text-decoration: none;
    color: inherit;
    transition: background-color 0.3s ease;
    padding: 10px 20px;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.7);
    border-radius: 4px;
}

.button-container img:hover {
    transform: scale(1.1);
}


.choose {
    text-align: center;
    background-color: #f1f145c1;
    color: #111111;
    border-radius: 10px;
    margin: auto;
    padding: 10px;
    text-decoration: none;
    transition: background-color 0.3s ease;
    padding: 10px 20px;
    border-radius: 4px;
}