body {
    margin: 0;
    position: relative;
    overflow: auto;
}

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    background-image: url("media/immortal.jpg");
    background-size: cover;
    background-position: 50% 35%;

    filter: blur(7px);
    z-index: -1;
}


@font-face {
    font-family: "metal";
    src: url("media/SanguineFrost.ttf") format("truetype");
}

@font-face {
    font-family: "metal2";
    src: url("media/MetalGothic.ttf") format("truetype");
}

h1 {
    color: #000000;
    font-family: "metal";
    margin: 0 15px 13px 13px;
}

.shlorer {
    border: 5px solid #ff6600;
    border-radius: 20px;
    border-image-slice: 30;
}

h2 {
    color: #000000;
    font-family: "metal2";
    text-align: center;
    font-size: 33px;
    text-decoration: underline;
    margin: 10px 0;
}

h3 {
    color: #000000;
    font-family: "metal2";
    font-size: 27px;
    text-decoration: underline;
    margin: 0px 0;
}

p {
    color: #000000;
    font-family: "metal2";
    font-size: 24px;
    margin: 10px auto;
}

.submit-heading, .submit-box, .submit-button {
    display: grid;
    grid-column: 1 / 4;
    text-align: center;
    justify-items: center;
    justify-self: center;
}

.submit-box {
    margin-top: 40px;
    text-align: center;
}

.submit-input {
    width: 300px;
    padding: 10px;
    font-size: 16px;
    border-radius: 6px;
    border: 2px solid #ac4500;
    background-color: #ff6600;
    color: black;
    text-align: left;
}

.submit-button, .otherpages {
    padding: 10px 20px;
    margin-top: 5px;
    margin-left: 10px;
    font-size: 16px;
    border: 2px solid #ac4500;
    border-radius: 6px;
    cursor: pointer;
    background-color: #ff6600;
    color: black;
    transition: 0.2s;
}

.submit-button:hover, .otherpages:hover {
    background-color: #ff7418;
    transform: scale(1.08);
}


.otherpageshyperlink {
    text-decoration: none;
    color: #000000;
}

.lambda {
    justify-self: end;
    width: 200px;
    height: 200px;
    margin:15px
}

.top-row {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    grid-template-rows: 200px;
    align-items: center;
}

.bio {
    text-align: center;
}

.container {
    background-color: #ffffff;
    width: 50%;
    margin: 0 auto;
    margin-top: 20px;
    padding: 20px;
    border-radius: 10px;

    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    align-items: start;
    justify-items: center;
    row-gap: 40px;
}

.other-pages {
    grid-column: 1 / 4;
    text-align: center;
    margin-top: 40px;
    font-family: "arial";
}

.left, .right {
    align-self: center;
}

.middle {
    max-height: 100%;
}