body,
html {
    height: 100%;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: Arial, sans-serif;
    background-color: #f0f0f0;
}

.container {
    text-align: center;
}

.logo-holder {
    position: fixed;
    top: 20px;
    height: 0px;
    width: 100%;
    text-align: center;
}

.logo {
    width: 200px;
    margin-bottom: 40px;
}

.links {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.links a {
    text-decoration: none;
    color: #333;
    font-size: 18px;
    transition: color 0.3s;
}

.links a:hover {
    color: #007bff;
}
