* {
    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-wrap: wrap;
}

@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;
}

.containerzpryvitanniam {
    text-align: center;
    box-shadow: 0 0 10px #4399d2b3;
    padding: 10px;
    border-radius: 8px;
    opacity: 0;
    animation: fadeIn 1s 0.5s forwards;
    margin: 10px;
    flex: 0 0 calc(50% - 40px);
    transition: box-shadow 0.3s ease;
}

.containerzpryvitanniam:hover {
    box-shadow: 0 0 20px #0099ffe6;
}

h1 {
    margin-bottom: 20px;
    color: #3498db;
}

p {
    color: #95a5a6;
    margin-bottom: 30px;
}

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;
}

a {
    text-decoration: none;
    color: inherit;
}

footer {
    position: fixed;
    bottom: 30px;
    width: 100%;
    height: 50px;
    color: #a2a0af;
    text-align: center;
    line-height: 50px;
}