body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: Arial, sans-serif;
    overflow: hidden; /* Prevents scrollbars */
}

.background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: background-image 2s ease-in-out; /* Smooth fade */
}

.content {
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 20px;
    max-width: 400px;
    text-align: center;
    border-radius: 10px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); /* Center the content */
    z-index: 1;
}

.logo {
    width: 137px;
    margin-bottom: 10px;
}

.line {
    width: 100%;
    height: 2px;
    background-color: white;
    margin-bottom: 10px;
}

.excellence {
    width: 100%;
    max-width: 300px; /* Adjust width as needed */
    margin-bottom: 20px;
}

p {
    margin: 10px 0;
}

a {
    color: lightblue;
    text-decoration: none;
}