/* General Reset */
body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    background-color: black;
    color: red;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    text-align: center;
    border-radius: 25px;
    border: 2px solid red;
    padding: 20px;
    position: relative;
    width: 500px;
    height: 500px;
}

.links {
    margin-top: 150px;
}

.link {
    display: block;
    text-decoration: none;
    color: red;
    font-size: 30px;
    margin: 10px 0;
}

.link:hover {
    opacity: 0.8;
}

.logo {
    position: absolute;
    bottom: -23px; /* Adjust to align it with the container's border */
    left: 70%;
}

.button-image {
    cursor: pointer;
    width: 150px; /* Adjust size to match the mockup */
    height: auto;
}
