body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-image: url('../images/background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100vh;
    color: white;
    position: relative;
}

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

a {
    text-decoration: none;
    color: #ffffff;
    font-weight: bold;
    background: rgba(0, 0, 0, 0.5);
    padding: 8px 16px;
    border-radius: 8px;
    transition: background 0.3s ease;
}

a:hover {
    background: rgba(255, 255, 255, 0.2);
}

.bottom-link {
	align-items: left;
    margin-top: 20px;
    font-size: 18px;
}

.top-left {
    position: absolute;
    top: 60px;
    left: 120px;
    font-size: 16px;
}
.bottom-left {
    position: absolute;
    top: 300px;
    left: 100px;
    font-size: 16px;
}
.bottom-footer {
    position: absolute;
    bottom: 10px;
    width: 100%;
    text-align: center;
    font-size: 1rem;
    color: white;
    font-weight: bold;
}