@import url('https://fonts.googleapis.com/css2?family=Inconsolata:wght@200;300;400;500;600;700;800;900&family=Major+Mono+Display&family=Nova+Mono&display=swap');
@import url("https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200");
:root {
    --dark-blue: #324ca0;
    --light-blue: #00a2ff;
    --teal: #00a9af;
    --yellow: #F2FA5A;
    --default-text-color: white;
    --monospace: 'Major Mono Display', monospace;
    --heading: 'Nova Mono', monospace;
    --body: 'Inconsolata', monospace;

}
body {
    padding: 0;
    margin: 0;
    background-color: var(--light-blue);
    background-image: linear-gradient(transparent 2%, var(--dark-blue));
    background-repeat: no-repeat;
    min-height: 100vh;
}


.page {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: var(--light-blue);
    width: 100vw;
    height: 100vh;
    color: white;
    font-family: var(--body);
    overflow-x: hidden;
  overflow-y: hidden;
    background-image: linear-gradient(transparent 2%, var(--dark-blue));
    z-index: 3;
}

.link-button {
  border: 1px solid white;
  padding: 0.015em;
  padding-left: 0.3em;
  padding-right: 0.3em;
  border-radius: 0.5em;
  text-decoration: none;
  color: white;
}
.link-button:hover {
  background-color: white;
  color: var(--dark-blue);
  border-color: var(--light-blue);
}

.contact-info-link {
  text-decoration: none;
  font-family: 'Courier New', Courier, monospace;
  letter-spacing: 0em;

}


.contact-info-link:visited {
  color: var(--yellow);
}

.contact-info-link:link {
  color: white;
}

.contact-info-link:hover {
  color: var(--teal);
}
.about {
    font-size: calc(min(4vh,6vw))
}

.about.divider {
    border-width: 1px;
    border-style: dashed;
}

.about.bold-head {
    font-family: var(--heading);
}
.about.bold-head.bold {
    color: var(--yellow);
}

p.about {
    font-size: 2em;

}
.menu-container {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  gap: 1em;
  height: 5vh;

}

.menu {
  font-size: 4vh !important;
  text-align: right;
  align-self: flex-end;
  border-bottom-left-radius: 100%;
  border-bottom-right-radius: 100%;
  padding: 0.15em;
  border: 1px solid white;
  border-top: none;

}

.menu:hover {
  background-color: var(--dark-blue);
  border-bottom-left-radius: 100%;
  border-bottom-right-radius: 100%;
  padding: 0.15em;
  border: 1px solid transparent;
  border-top: none;
}



.tile {
    box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.4),
        0px 7px 13px -3px rgba(0, 0, 0, 0.3),
        0px -3px 0px 0px rgba(0, 0, 0, 0.2) inset;
    padding: 1em;
    width: 80vw;
}


#table-of-contents {
    display: none;
    flex-direction: column;
    align-items: center;
    width: 100%;
    /* animation-duration: 0.5s;
    animation-name: animate-fade;
    animation-fill-mode: both;
    animation-timing-function: ease-in-out; */


}

#table-of-contents:hover {
    transition: all 1s ease-in-out 3s;
}


.nav {
    width: 100%;
    overflow: hidden;
    background-color: var(--dark-blue);
  font-size: 5vw;
}

.nav:hover {
    animation-duration: 0.2s;
    animation-timing-function: ease;
    animation-name: slidein;
    animation-fill-mode: forwards;
}

.row {
    color: white;
    width: 100%;
    height: 3em;
  font-size: 5vw;
  display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 2em;
    font-family: var(--heading);
    border-bottom: 1px solid var(--light-blue);
    text-decoration: none;
}


.row:hover {
    text-shadow: 0 0 .1rem #fff,
        0 0 .1rem #fff;
}


.main-header {
    color: #fff;
    box-shadow: 0px 9px 30px white, inset 0px 9px 30px white;
    padding: 1em;
    width: 80vw;
    border-radius: 1em;
    margin-top: 3em;
    margin-bottom: 3em;
    font-family: var(--monospace);
    text-shadow:
        0 0 1rem #fff,
        0 0 2rem var(--dark-blue),
        0 0 3rem var(--dark-blue),
        0 0 4rem var(--teal),
        0 0 5rem var(--teal);
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 3vh;
}


.footer {
    display: flex;
    flex-direction: row-reverse;
    gap: 1em;
    background-color: var(--dark-blue);
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 3.5em;
    align-items: center;
    padding-left: 1em;
    padding-right: 3em;
    overflow-x: scroll;
    font-family: 'Courier New', Courier, monospace;
}

.logo {

    height: 80%;
}
.round {
  border-radius: 100%;
}


.logo-text {
    animation-duration: 0.5s;
    animation-name: animate-fade;
    animation-fill-mode: forwards;
}

.brief-intro {
    height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}


@keyframes animate-fade {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes slidein {
    from {
        height: 3em;
    }

    to {
        height: fit-content;
    }
}

.scroll-gear {
    --scroll: pageYOffset / offsetHeight - innerHeight;
    position: initial;
    bottom: -20em;
    width: 20vw;
}

.card-end {
    flex-grow: 1;
    background-color: transparent;
    opacity: 0.8;
    background-image: radial-gradient(var(--yellow) 1.1px, transparent 1.1px);
    background-size: 22px 22px;
    width: 100%;
  display: flex;
  flex-direction: column;

}

.card-end > .down-arrow {
  font-size: 10vh;
  align-self: center;
  justify-self: center;
  text-decoration: none;
  color: white;
}


.vert-move {
  -webkit-animation: mover 1s infinite  alternate;
  animation: mover 1s infinite  alternate;
}
.vert-move {
  -webkit-animation: mover 1s infinite  alternate;
  animation: mover 1s infinite  alternate;
}

#details {
  width: 100%;
  overflow-x: hidden;
  min-height: 100vh;
  padding-top: 2em;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1em;
  margin-bottom: 2em;
}
*{
  scroll-behavior: smooth;
}

.detail-block {
  display: flex;
  flex-direction: column;
  background-color: rgba(255, 255, 255, 0.35);
  border: 3px solid white;
  color: white;
  border-radius: 1em;
  width: 90vw;
  height: fit-content;
  padding-bottom: 1em;
  box-shadow: rgba(255, 255, 255, 0.12) 0px 2px 4px 0px, rgba(255, 255, 255, 0.32) 0px 2px 16px 0px;
}
.detail-block > .title {
  text-transform: capitalize;
  font-size: 6vw;
  font-family: var(--heading);
  margin: 1em;
  margin-bottom: 0.5em;
}
.detail-block > .content {
  display: flex;
  flex-direction: column;
  font-family: var(--body);
}
.detail-tile {
  display: flex;
  flex-direction: column;
  width: 95%;
  align-self: center;
  margin-bottom: 0.5em;
}
.detail-tile > .links {
  display: flex;
  flex-direction: column;
  width: 90%;
  align-self: flex-end;
}
.detail-tile > .links > a {
  /*
  overflow-wrap: anywhere;
  */
  color: var(--dark-blue);
  text-decoration: none;
  font-size: 3vw;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 90%;
}
.detail-tile > .links > a:hover {
  color: var(--yellow);
}
.detail-tile > .header {
  display: flex;
  flex-direction: row;
  font-size: 4vw;
  gap: 1em;
}
.detail-tile > .header > .heading {
}


@-webkit-keyframes mover {
  0% { transform: translateY(0); }
  100% { transform: translateY(-5vh); }
}
@keyframes mover {
  0% { transform: translateY(0); }
  100% { transform: translateY(-5vh); }
}




.rotate-scroll {

    position: fixed;
    /* make sure it stays put so we can see it! */
    animation: rotate 1s linear infinite;
    animation-play-state: paused;
    animation-delay: calc(var(--scroll) * -1s);
}

@keyframes rotate {
    to {
        transform: rotate(360deg);
    }
}
#rotate {
  visibility: hidden;
}
@media only screen and (min-width: 768px) {
  #rotate {
    visibility: visible;
  }
}
/*---------------------------------------------------*/
