* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Georgia", serif;
    color: #e5e5e5;

    background:
        linear-gradient(rgba(10,10,10,0.75), rgba(10,10,10,0.85)),
        url("tlo.jpg");

    background-size: cover;
    background-position: center 5%;
    background-repeat: no-repeat;
}

.portal {
    text-align: center;
    width: 100%;
    max-width: 900px;
    padding: 40px 20px;
}

.portal-header h1 {
    font-size: 48px;
    font-weight: 400;
    letter-spacing: 2px;
}

.portal-header h2 {
    font-size: 20px;
    font-weight: 300;
    margin-top: 10px;
    opacity: 0.7;
}

.portal-subtitle {
    margin-top: 20px;
    font-size: 16px;
    opacity: 0.6;
}

.portal-nav {
    margin-top: 80px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.portal-nav a {
    text-decoration: none;
    color: #e5e5e5;
    font-size: 28px;
    letter-spacing: 3px;
    transition: all 0.3s ease;
    opacity: 0.8;
}

.portal-nav a:hover {
    opacity: 1;
    transform: translateX(10px);
}