body {
    margin: 0;
    padding: 0;
	font-family: 'Montserrat', sans-serif;
    background-color: black;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
}

.container {
    width: 80%;
    max-width: 400px;
}

.logo {
    width: 400px;
    height: 400px;
    margin-bottom: 20px;
}

        h1 {
            font-size: 2rem;
            font-weight: 700;
        }

        h2 {
            font-size: 1.2rem;
            font-weight: 500;
        }


.link-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.link-button {
    display: block;
    padding: 15px 20px;
    border: 2px solid white;
    border-radius: 25px;
    text-decoration: none;
    color: white;
    font-size: 18px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.link-button:hover {
    background-color: white;
    color: black;
}

/* Ensure the layout is responsive */
@media (max-width: 480px) {
    .container {
        width: 100%;
        padding: 20px;
    }

    .logo {
        width: 80px;
        height: 80px;
    }

        h1 {
            font-size: 2rem;
            font-weight: 700;
        }

        h2 {
            font-size: 1.2rem;
            font-weight: 500;
        }

    .link-button {
        font-size: 16px;
        padding: 12px 15px;
    }
}
