
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #000;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}
.container {
    text-align: center;
}
.logo {
    width: 120px;
    margin-bottom: 20px;
}
.name {
    margin-bottom: 30px;
    font-size: 1.4rem;
}
.button-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.link-button {
    background-color: #c3002f;
    color: white;
    border: none;
    padding: 15px 25px;
    font-size: 1rem;
    border-radius: 10px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
.link-button:hover {
    background-color: #a80028;
}
