@font-face {
    font-family: 'Minecraft';
    src: url('font.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

html, body {
    margin: 0;
    width: 100%;
    height: 100%;
    font-family: 'Minecraft';
    line-height: 1.25;
    background: rgb(7, 25, 38);
    color: white;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 0.5in;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgb(10, 34, 51);
}

.header * {
    max-height: 0.5in;
    margin-left: 4px;
    margin-right: 4px;
}

.padding {
    top: 0;
    left: 0;
    width: 100%;
    height: 0.5in;
}

.hero-image {
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(
            circle at center,
            rgba(0,0,0,0) 35%,
            rgba(0,0,0,0.85) 100%
        ),
        url("hero.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    
    position: relative;
    overflow: hidden;
}

.hero-image::before {
    content: "";
    position: absolute;
    width: 100vmax;
    height: 100vmax;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(
        circle,
        transparent 40%,
        rgba(0, 0, 0, 0.8) 100%
    );
    pointer-events: none;
}

.hero-text {
    position: static;
    transform: none;
    font-size: 6rem;
}

.form-section {
    gap: 1rem;
    width: 100%;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    background: rgb(10, 34, 51);
    width: fit-content;
    margin: 0 auto;
    text-align: left;
}

.content-section {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 1rem;
    width: 100%;
    text-align: center;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    background: rgb(10, 34, 51);
}

.content-section .left,
.content-section .right {
    text-align: left;
    max-width: 5in;
}

.content-section .left *,
.content-section .right * {
    max-width: 4in;
}

.content-section a {
    color: white;
    background-color: rgb(20, 71, 104);
    padding: 8px;
    border-radius: 8px;
    font-size: large;
    text-decoration: none;
    font-family: 'Minecraft';
}

.content-section button {
    color: white;
    background-color: rgb(20, 71, 104);
    padding: 8px;
    border: none;
    border-radius: 8px;
    font-size: large;
    text-decoration: none;
    font-family: 'Minecraft';
}

.center {
    text-align: center;
}