* {
    margin: 0;
    padding: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.landing {
    position: relative;
    width: 100%;
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: #000;
}

.header-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: black;
}

.campus {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 50%;
    z-index: 1;
    filter: brightness(60%);
}

.header-text {
    position: relative;
    z-index: 10;
    width: 90%;
    max-width: 720px;
    padding: 48px 5%;
    margin-left: 5%;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    opacity: 0;
    animation: fadeUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.1s both;
}

.header-text h1 {
    font-size: 110px;
    line-height: 1;
    opacity: 0;
    animation: fadeUpSplit 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.15s both;
}

.header-text p {
    margin-top: 16px;
    font-size: 22px;
    line-height: 1.35;
    max-width: 720px;
    opacity: 0;
    animation: fadeUpSplit 0.95s cubic-bezier(0.22, 1, 0.36, 1) 0.22s both;
}

.header-text a {
    display: inline-block;
    margin-top: 28px;
    background-color: rgba(0, 0, 0, 0.55);
    color: white;
    border: 1px solid white;
    border-radius: 40px;
    padding: 14px 30px;
    text-shadow: none;
    text-decoration: none;
    transition: background-color 0.5s ease, color 0.5s ease, transform 0.35s ease;
    opacity: 0;
    animation: fadeUpSplit 1.05s cubic-bezier(0.22, 1, 0.36, 1) 0.32s both;
}

.header-text a:hover {
    background-color: rgb(234, 234, 234);
    color: black;
    transform: translateY(-1px);
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(28px) scale(0.98);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes fadeUpSplit {
    from {
        opacity: 0;
        transform: translateY(24px) scale(0.99);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@media (max-width: 600px) {
    .landing {
        min-height: auto;
        padding: 80px 0 48px;
    }

    .header-text {
        padding: 24px 4%;
    }

    .header-text a {
        width: 100%;
        text-align: center;
    }
}