html,
body {
    margin: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: black;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    position: relative;

    width: 100vw;
    height: 100vh;

    background: url("static/bkgs/main.png") center center no-repeat;
    background-size: contain; /* preserves aspect ratio */

    border-left: 3px dashed rgb(71, 26, 115);
    border-right: 3px dashed rgb(71, 26, 115);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.container h1 {
    position: absolute;
    top: 10vh;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;

    margin: 0;
    color: rgb(241, 228, 254);
    font-size: 4rem;
    font-family: "Bitcount Prop Single", system-ui;
}

.container h2 {
    position: absolute;
    top: 90vh;
    left: 60%;
    transform: translateX(-40%);
    white-space: nowrap;

    margin: 0;
    color: rgb(241, 228, 254);
    font-size: 2rem;
    font-family: "Bitcount Prop Single", system-ui;
}

.links {
    position: absolute;
    top: 50vh;
    left: 25%;
    transform: translate(-40%, -50%);

    display: flex;
    flex-direction: column;
    align-items: flex-start;  /* align children to the left */
    gap: 16px;

    padding: 24px 40px;

    background: rgba(0, 0, 0, 0.65);
    border-radius: 12px;
    backdrop-filter: blur(6px);
}

.links a {
    display: flex;
    align-items: center;
    justify-content: flex-start; /* keep icon + text left aligned */
    gap: 12px;

    width: 100%; /* makes all rows same alignment */
    color: rgb(241, 228, 254);
    text-decoration: none;
    font-size: 1.5rem;
}

.links a:hover {
    color: #b97cff;
}

.links img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.links span {
    font-family: "Montserrat";
}