:root {
    --accent-color: rgba(41, 148, 174, 0.9);
}
@font-face {
    font-family: Share;
    src: url("/fonts/Share-Regular.ttf");
}

@font-face {
    font-family: Share;
    src: url("/fonts/Share-Bold.ttf");
    font-weight: bold;
}

@font-face {
    font-family: Share;
    src: url("/fonts/Share-Italic.ttf");
    font-style: italic;
}

@font-face {
    font-family: Share;
    src: url("/fonts/Share-BoldItalic.ttf");
    font-style: italic;
    font-weight: bold;
}

@font-face {
    font-family: "Squada One";
    src: url("/fonts/SquadaOne-Regular.ttf");
}

body {
    margin: 0;
    background-color: #161616;
    font-size: 16pt;
    font-family: Share, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    color: white;
}

a {
    text-decoration: none;
    color: var(--accent-color);
}

a:hover {
    text-decoration: underline;
}

h1 {
    color: var(--accent-color);
}

.blueNav {
    z-index: 100;
    position: fixed;
    display: flex;
    width: 100vw;
    height: 58px;
    background-color: var(--accent-color);
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.navContainer {
    width: 75vw;
    display: flex;
    gap: 16px;
    font-size: 18px;
}

.navText {
    color: white;
    font-size: 18px;
}

.rightAlign {
    max-width: fit-content;
    margin-left: auto;
}

.noPointer {
    pointer-events: none;
}

.noSelect {
    user-select: none;
}

.homeGalleryContainer {
    display: flex;
    height: 627px;
}

.homeGalleryImage1 {
    width: 50vw;
    background-image: url("/images/homeGalleryImage1.png");
    background-size: cover;
}

.homeGalleryImage2 {
    width: 50vw;
    background-image: url("/images/homeGalleryImage2.png");
    background-size: cover;
}

.homeGalleryImageAll {
    width: 100vw;
    background-image: url("/images/servers.jpg");
    background-size: cover;
}

.homeCircleElement {
    position: absolute;
    left: calc(50vw - 225px);
    top: 118px;
    width: 450px;
    height: 450px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.homeCircleTextContainer {
    width: 370px;
    height: 236.8px;
    margin-top: -64px;
}

.homeCircleHeader {
    font-family: "Squada One", system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-weight: 400;
    font-size: 32px;
    color: rgb(35, 129, 152);
    margin-bottom: 10px;
}

.homeCircleParagraph {
    margin: 0;
    color: rgb(94, 94, 94);
    font-size: 15pt;
}

.licenseContent {
    margin-left: auto;
    margin-right: auto;
    padding-top: 30px;
    padding-bottom: 30px;
    width: fit-content;
}

.licenseParagraph {
    margin: 0;
    font-size: 16px;
    font-weight: 400;
    width: fit;
}

@media (max-width: 800px) {
    .licenseParagraph {
        font-size: 10px;
    }
}

.reading {
    margin: auto;
    padding: 0 16px;
    width: min(800px, calc(100vw - 32px));
}
