.navball-container {
    margin: 0px;
    padding: 0px;
    width: 270px;
    height: 175px;
    background-color: #1f1f1f;
    bottom: 0px;
    left: 50%;
    transform: translate(-50%, 0%);
    border: 1px solid rgb(46, 46, 46);
    display: flex;
}

.navball-container h3 {
    color: white;
    font-family:'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    font-size: 16px;
}

.container {
    position: absolute;
    bottom: 0px;
    left: 50%;
    margin: 0px;
    padding: 0px;
}

.velocity {
    margin-left: 10px; 
}

.timer {
    display: none;
    position: absolute;
    color: white;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    top: 10%;
    left: 50%;
    font-size: 50px;
    transform: translate(-50%, -50%);
    user-select: none;
    text-shadow: 0px 0px 10px black;
}

.tag {
    font-size: 22px;
    margin-bottom: 10px;
    margin-top: -10px;
}

.godmode {
    width: 100%;
    display: inline-block;
    vertical-align: middle;
    
}

.link2 {
    color:#419ddb;
    text-decoration: none;
}
.link3 {
    color:#419ddb;
    text-decoration: none;
    font-size: 1.3rem;
}

.final-buttons {
    width: 100%;
    display: flex;
    gap: 10px;

}

.velocity-container {
    display: flex;
    transform: translate(-50%, 0%);
    background-color: #1f1f1f;
    justify-content: center;
    align-items: center;
    margin: 0px;
    padding: 0px;
    height: 30px;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    color: white;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif; 
    font-size: 15px;
    border: 1px solid rgb(46, 46, 46);
}

.footer {
    position: absolute;
    color: white;
    display: flex;
    gap: 10px;
    right: 8px;
    bottom: 0px;
    justify-content: center;
    align-items: center;
    font-family: Arial, Helvetica, sans-serif; 
    font-size: 12px;
    height: 28px;
    
}

.link {
    display: flex;
    align-items: center;
    color: white;
    text-decoration: none;
    gap: 5px;
}

#throttle-container {
    align-self: center;
    width: 30px;           
    height: 150px;        
    background: rgba(0,0,0,0.5); 
    background-image: url('/textures/throttle.png');
    border: 2px solid #494949;
    display: flex;
    overflow: hidden;
    margin-left: 12px;
    padding: 0px;
}

#throttle-bar {
    position: absolute;
    width: 30px;
    height: 10px;
    border: 1px solid #494949;
    left: 13px;
    background: linear-gradient(to top, #4e4e4e, #3a3a3a);
    transition: top 0.05s linear;
}

#descent-container {
    position: absolute;
    align-self: center;
    width: 30px;           
    height: 150px;        
    background: rgba(0,0,0,0.5); 
    background-image: url('/textures/descent.png');
    border: 2px solid #494949;
    overflow: hidden;
    right: 12px;
    padding: 0px;
}

#descent-bar {
    position: absolute;
    width: 30px;
    height: 10px;
    border: 1px solid #494949;
    right: -1px;
    background: linear-gradient(to top, #4e4e4e, #3a3a3a);
    transition: top 0.05s linear;
}

#navballCanvas {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  filter: drop-shadow(0px 0px 20px rgba(0, 0, 0, 0.6));
}


.timewarp-container {
    width: 180px;
    height: 30px;
    position: absolute;
    left: 0px;
    bottom: 0px;
    background-color: #1f1f1f;
    border-top-right-radius: 15px;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.triangle {
    margin-left: 5px;
    width: 20px;   /* base of the triangle */
    height: 20px;  /* height of the triangle */
    background: rgb(56, 56, 56);
    clip-path: polygon(
      0% 0%,       /* left middle point */
      100% 50%,      /* top right */
      0% 100%     /* bottom right */
    );
    cursor: pointer;
}

.triangle.active {
    background: rgb(14, 243, 14);
}

.death-container {
    pointer-events: none;
    width: 300px;
    height: 300px;
    position: absolute;
    left: 50%;
    top: 30%;
    background-color: #1f1f1f;
    align-items: center;
    padding: 15px;
    transform: translate(-50%, -50%);
    display: flex;
    color: white;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    flex-direction: column;
    border: 2px solid #494949;
    opacity: 0; 
    transition: opacity 0.5s ease-in-out;
}

.death-container.active {
    pointer-events: all;
    width: 300px;
    height: 300px;
    position: absolute;
    left: 50%;
    top: 30%;
    background-color: #1f1f1f;
    align-items: center;
    padding: 15px;
    transform: translate(-50%, -50%);
    display: flex;
    color: white;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    flex-direction: column;
    border: 2px solid #494949;
    opacity: 1;
}

.death-container h1 {
    padding: 0px;
    margin: 6px;
    color: rgb(209, 48, 48);
}

.death-container h3 {
    text-align: center;
    font-weight: bold;
}

.tip {
    color: #7c7c7c
}

.button {
    width: 50%;
    height: 60px;
    display: flex;
    background: #292929;
    border-radius: 5px;
    border: 1px solid #585858;
    justify-content: center;
    font-size: 20px;
    font-weight: bold;
    align-items: center;
    justify-self: center;
    color: white;
    cursor: pointer;
    margin-bottom: 10px;
    box-shadow:  0px 0px 5px 0px black;
}

.timewarp-title {
    position: absolute;
    bottom: 17px;
    color: white;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-size: 16px;
}

.death-buttons {
    margin-top: auto;
    display: flex;
    gap: 13px;
}

.controls-container {
    padding: 2px;
    position: absolute;
    color: white;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-size: 13px;
    background: linear-gradient(#1b1b1b, #00000000);
    display: flex;
    gap: 10px;
    right: 5px;
    top: 0px;

}

.controls p {
    margin: 0px;
}


.menu-container {
    position: absolute;
    width: 600px;
    height: 70%;
    top: 50%;
    left: 5%;
    transform: translate(0, -50%);
    border-radius: 10px;
    color: white;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
}



.course-select::-webkit-scrollbar {
  display: none;
}

.course-header {
    display: flex;
    flex-direction: column;
    margin-top: 10px;
    margin-bottom: 10px;
    gap: 10px;
}

.esc-menu {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
    color: white;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.menu-div {
    position: absolute;
    display: flex;
    flex-direction: column;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
    align-items: center;
}

.button-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
    overflow: scroll;
    overflow-x: hidden;
    scrollbar-width: none;
}



.course-image {
    width: 100px;
    height: 100px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.course-select {

    height: 100%;
}

.course-info {
    display: flex;
    flex-direction: column;
    text-align: left;
    margin-left: 10px;
    justify-content: space-between;
}

.settings {
    display: none;
    width: 400px;
    height: 600px;
    position: absolute;
    background-color: #1f1f1f;
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
    flex-direction: column;
    color: white;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    border-radius: 10px;
    box-shadow: 0px 0px 10px 0px black;
    justify-content: space-between;
    z-index: 999;
    padding: 20px;
}

.return {
    width: 100px;
    height: 30px;
    border-radius: 4px;
    background-color: #176294;
}



.settings h2 {
    margin: 0px;
    padding: 0px;
}

.settings h3 {
    margin: 0px;
}

.settings h1 {
    margin: 0px;
}

.finish-screen {
    display: none;
    z-index: 9;
    position: absolute;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    top: 50%;
    left: 50%;
    box-shadow: 0px 0px 10px 0px black;
    border-radius: 10px;
    color: white;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    align-items: center;
    flex-direction: column;   
    padding: 10px;
    justify-content: center;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.final-time-screen {
    display: none;
    flex-direction: column;
    align-items: center;
}

.finish-screen h1 {
    margin: 2px;
}

.finish-screen h2 {
    margin: 2px;
}

.new-high-score-screen {
    display: flex;
    display: none;
    flex-direction: column;
    align-items: center;
}

.new-high-score {
    color: #68aef0;
}


.oneline {
    display: flex;
    gap: 10px;
}

.controls-settings {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    width: 100%;
}

.slider p {
    margin: 0px;
    padding: 0px;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-size: 18px;
}

.slider-value {
    margin: 0px;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-size: 16px;
}

.slider {
    margin: 0px;
    padding: 0px;
}

.setting {
    width: 150px;
    height: 30px;
    font-size: 14px;
    border-radius: 3px;
}

.settings-logo {
    width: 350px;

}

.logo {
    align-self:flex-start;
    width: 600px;
    user-select: none;
}

.flag {
    width: 28px;
}

.course-select h1 {
    margin: 0px;
}

.course-desc {
    font-weight: bold;
    font-size: 18px;
    width: 290px
}


.button:hover {
    background-color: #6f81ec
}

.Menu {
    display: flex;
    flex-direction: column;

}

.ding {
    width: 500px;
    scrollbar-width: none;
}

.ding {
    display: flex;
    gap: 10px;
    overflow: scroll;
    height: 100%;
}

.back-button {
    background-color: #292929;
    border-radius: 10px;
    padding: 5px;
    width: 30px;
    height: 30px;
    text-align: center;
    font-size: 24px;
    cursor: pointer;
}

.back-button:hover {
    background-color: #3496d8;
}

.course-button {
    padding: 10px;
    background: #292929;
    border-radius: 5px;
    border: 1px solid #585858;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    cursor: pointer;
    display: flex;
    gap: 40px;
}

.course-button:hover {
    background: #3496d8;
}

.note {
    margin: 0px;
}

.course-name {
    font-size: 1.6rem;
    font-weight: bold;
}

.difficulty {
    font-size: 1.0rem;
    font-weight: bold;
}

.course-select {
    display: none;
    flex-direction: column;
}

.about-page {
  position: absolute;
  display: flex;
  flex-direction: column;
  background-color: #1f1f1f;
  width: 100%;
  margin: 0px;
  padding: 0px;
  left: 0px;
  top: 0px;
  color: white;
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  align-items: center;
}

.info {
  width: 816px;
  padding: 50px;
}

.Header {
  margin-top: 20px;
  border: 2px dashed gray;
  padding: 20px;
  border-radius: 10px;
}

.About-header {
  font-size: 20px;
}

.info p {
  font-size: 1.1rem;
}

.banner {
  height: 250px;
  width: 100%;
  background-image: url("assets/lunarlander_thumb.png");
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  box-shadow: 0px 0px 40px 0px black;
}

.about-button {
  position: absolute;
  left: 10px;
  width: 150px;
  font-size: 1.2rem;
  top: 10px;
  z-index: 999;
  position: fixed;
}

.info2 {
  background-color: #3f3f3f;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
} 

.banner h1 {
  text-shadow: 0px 0px 20px 0px black;
}

.logo-about {
  width: 500px;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.6));
}




