@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Space+Mono:ital,wght@0,400;0,700;1,400;1,700&display=swap");

* {
    font-family:
        Playfair Display,
        -apple-system,
        system-ui,
        BlinkMacSystemFont,
        "Helvetica Neue",
        Arial,
        sans-serif;
}

body {
    margin: 0;
    background-image: url("./assets/joopiter.jpg");
    background-size: cover;
    background-position-x: center;
    background-position-y: center;
}

.container {
    position: relative;
    box-sizing: border-box;
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    gap: 24px;
    padding: 8%;
    transition: backdrop-filter 0.4s ease-in-out;
    pointer-events: none;
    backdrop-filter: blur(4px) brightness(120%) contrast(80%);
    overflow: hidden;
}

.container:hover {
    backdrop-filter: none;
}

.title {
    font-weight: 400;
    font-size: 48px;
    color: #eee;
    margin: 0;
}

.subheading-container {
    width: 100%;
    margin: 0;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    row-gap: 8px;
    column-gap: 24px;
    align-items: baseline;
}

.subheading {
    font-family: Space Mono;
    font-weight: 400;
    font-size: 16px;
    color: #eee;
    margin: 0;
}

.disclaimer {
    font-family: Space Mono;
    font-weight: 400;
    font-size: 14px;
    color: #eee;
    margin: 0;
}

.link {
    color: #eee;
    text-decoration: none;
}

.circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    aspect-ratio: 1;
    width: calc(max(100vw, 100vh) * 0.77);
    border-radius: 100%;
    pointer-events: auto;
}
