/* Reset default browser styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #0f4870;
}

body, html {
    height: 100%;
    font-family: Arial, sans-serif;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 20px;
    text-align: center;
}

h1 {
    margin-bottom: 50px;
    font-size: 2em;
    color: #fff;
}

a, a:visited {
    color: white;
}

.link-list {
    list-style: none;
}

.link-list li {
    margin: 10px 0;
}

.link-list a {
    display: inline-block;
    background: #ff5524;
    color: white;
    padding: 15px 25px;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.link-list a:hover {
    background-color: #d11932;
}

/* Responsive design */
@media (max-width: 600px) {
    .link-list a {
        width: 100%;
        box-sizing: border-box;
    }
}
