body {
    margin: 0;
    font-family: 'Roboto', sans-serif;
    background-color: #0a0a0a;
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.container {
    max-width: 500px;
    width: 100%;
    padding: 20px;
    text-align: center;
}

.logo {
    width: 150px;
    height: 150px;
    object-fit: contain;
    border-radius: 50%;
    margin-bottom: 1px;

    background-color: #f0f0f0;
    padding: 1px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);

}

h1 {
    font-size: 24px;
    margin-bottom: 10px;
}

.subtitle {
    font-size: 16px;
    color: #ccc;
    margin-bottom: 30px;
}

.link {
    display: block;
    background-color: #ffffff;
    color: #000000;
    text-decoration: none;
    padding: 14px 20px;
    margin: 12px 0;
    border-radius: 10px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.link:hover {
    background-color: #e0e0e0;
}

.footer {
    margin-top: 40px;
    font-size: 12px;
    color: #777;
}

@media (max-width: 600px) {
    .link {
        font-size: 16px;

    }
}

.bg-video {
    position: fixed;
    top: 0;
    left: 0;
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
    z-index: -1;
}