/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-image: url('Pictures/YellowBackground.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #000000;
    font-family: "Times New Roman", Times, serif;
    height: 100vh;
    display: flex;
    flex-direction: column;
    padding: 2.5vw;
    overflow: hidden;
}

/* Main Content */
main {
    flex: 1;
    display: flex;
    align-items: flex-start;
    padding-top: 1rem;
}

h1 {
    font-size: 6.5vw;
    font-weight: 400;
    line-height: 1.05;
    letter-spacing: -0.02em;
    max-width: 100%;
}

sup {
    font-size: 0.4em;
    vertical-align: super;
    margin-left: 0.1em;
}

/* Footer */
footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding-bottom: 10px;
    font-family: Helvetica, Arial, sans-serif;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

footer a {
    text-decoration: none;
    color: inherit;
    opacity: 0.6;
    transition: opacity 0.2s ease;
}

footer a:hover {
    opacity: 0.25;
    filter: blur(2.5px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    body {
        padding: 20px;
        height: auto;
        min-height: 100vh;
    }

    h1 {
        font-size: 3.2rem;
    }

    footer {
        margin-top: 60px;
    }
}