* {
    color: var(--text)
}

#logoAI, #logoVFR {
    position: relative;
    bottom: 20px;
    font-size: 122px;
    font-weight: 650;
}

#logoAI {
    color: var(--primary);
}

#logoVFR {
    color: var(--text);
}

#logoAlpha {
    color: var(--text);
    position: relative;
    bottom: 30px;
    left: 10px;
    font-weight: 100;
    padding: 6px;
    padding-right: 10px;
    padding-left: 10px;
    border: 0.1px solid var(--text);
    border-radius: 14px;
    border-top-color: var(--bg) 100px;
    border-spacing: 10px;
}

/*'AI ASSISTED FLIGHT PLANNING'*/
#subtitle {
    position: relative;
    color: var(--text);
    bottom: 45px;
    font-weight: 700
}

body {
    padding-left: 30px;
    padding-top: 10px;
}

/*'settings icon'*/
#settings {
    color: var(--text);
    position: absolute;
    width: 50px;
    height: 50px;
    top: 30px; 
    right: 30px;
}

#continue {
  width: 260px;
}

#settings:hover {
    cursor: pointer;
}


.mainMenuButton {
    margin-bottom: 20px;
    width: 200px;
    height: 45px;
    position: relative;
    font-family: 'Manrope';
    font-size: 20px;
    background-color: var(--highlight);
    border: none;
    padding: 8px 26px;
    border-radius: 5px;
}

/* Disclaimer modal Content/Box */
.disclaimerContent {
  position: relative;
  background-color: var(--highlight);
  margin: 7% auto;
  padding: 35px;
  width: 720px;
  border-radius: 15px; 
  bottom: 50px;
  /*allow scrolling if content is too long*/
  max-height: 80vh;
  overflow-y: auto;
}

#agreement{
    text-align: center;
}

/*'DISCLAIMER' header at the top*/
#disclaimerHeader {
    font-weight: 500;
    font-size: 36px;
    margin-top: auto;
    text-align: center;
}

/*Continue and go back buttons*/
.disclaimerButton {
    position: relative;
    font-family: 'Manrope';
    font-size: 20px;
    background-color: var(--bg);
    border: none;
    padding: 6px 20px;
    border-radius: 5px;
    margin-left: 5px;
    margin-right: 5px;
    left: 200px;

}

/*disclaimer modal (background)*/
.modal{
  display: none;  /*makes it hidden by default */
  position: fixed; 
  z-index: 1; /*this makes it appear ontop*/
  left: 0;
  top: 0;
  width: 100%; 
  height: 100%; 
  background-color: var(--popupbg);
}

/*load flight modal*/
.modalUpload{
  display: none;  
  position: fixed; 
  z-index: 1; /*this makes it appear ontop*/
  left: 0;
  top: 0;
  width: 100%; 
  height: 100%; 
  background-color: var(--popupbg);
}

/* Upload Flight Modal Content/Box */
.uploadFlightContent {
  position: relative;
  background-color: var(--highlight);
  margin: 10% auto; 
  padding: 35px;
  width: 720px;
  border-radius: 15px; 
  text-align: center;
  bottom: 50px;
}

.uploadFlightButton {
    position: relative;
    font-family: 'Manrope';
    font-size: 20px;
    background-color: var(--bg);
    border: none;
    padding: 6px 20px;
    border-radius: 5px;
    margin-left: 100px;
    margin-right: 5px;
    margin-bottom: 10px;
}

hr {
    border: 1px solid;
    width: 90%;
    margin-top: 1px;
    margin-bottom: 20px;
    color: hsla(0, 0%, 0%, 0.1);
}

/*browse button*/
.browse {
    position: relative;
    font-family: 'Manrope';
    font-size: 20px;
    background-color: var(--bg);
    border: none;
    padding: 6px 20px;
    border-radius: 5px;
    margin-left: 5px;
    margin-right: 5px;
    margin-bottom: 10px;
}

.browse:hover {
    cursor: pointer;
    background-color: var(--primary);
}

/*file name display*/
#fileName {
    font-family: 'Manrope';
    font-size: 18px;
    color: var(--text);
    margin-left: 15px;
    font-weight: 600;
}

#uploadFlightEXIT {
    position: relative;
    right: 50px;
}