body {
    background-color: #1A1F33;
    color: #1DA0FF;
}

@keyframes rotation {
    0% {
      transform: rotate(0deg); }
    100% {
      transform: rotate(360deg); } }
#loader-wrapper {
    background-color: #1A1F33;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    width: 100%;
    height: 100%;
    text-align: center; }
.loader {
    width: 40px;
    height: 40px;
    border: 5px solid #000000;
    border-bottom-color: transparent;
    border-radius: 50%;
    margin-top:calc(50vh - 20px);
    display: inline-block;
    box-sizing: border-box;
    -webkit-animation: rotation 1s linear infinite;
    animation: rotation 1s linear infinite; }
.section1 {
    display: flex;
    width: 100dvw;
    height: 50dvh;
    margin: auto;
    align-items: end;
    justify-content: center;
}
.section1 h1 {
    margin-block-end: 0 !important;
    font-size: xx-large;
}
.section2 {
    display: flex;
    width: 100dvw;
    height: 50dvh;
    margin: auto;
    align-items: start;
    justify-content: center;
}
.section2 h2 {
    margin-block-start: 0 !important;
}
a:link {
    color: inherit;
}
a:visited {
    color: inherit;
}
a:hover {
    color: blue;
}
.footer {
    height: 20px;
    margin-top: -20px;
}