body {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #f8f8f8;
    font-family: Arial, sans-serif;
    text-align: center;
}

.container {
    max-width: 600px;
}

.logo {
    width: 80%;
    max-width: 300px;
    margin-bottom: 20px;
}

h1 {
    font-size: 2em;
    color: #4a4a4a;
    margin-bottom: 30px;
}

.links {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 30px;
    background-color: #273c4e;
    color: #ffffff;
    font-size: 1em;
    transition: opacity 0.3s ease;
}

.btn svg {
    width: 8px;
    height: 8px;
    fill: white;
}

.btn.secondary {
    background-color: #7d858c;
}

.btn:hover {
    opacity: 0.85;
}
