/*----------------------------------------*/
/*--------------BASE STYLE----------------*/
/*----------------------------------------*/

@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");

html {
  padding-left: 5%;
  padding-right: 5%;
  -webkit-font-smoothing: antialiased;
  -moz-font-smoothing: grayscale;
  font-family: "Roboto", sans-serif;

  /*hiding the scrollbar in teh side*/
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
}
/*hiding the scrollbar in teh side for Chrome*/
html::-webkit-scrollbar {
  display: none;
}

.text-container {
  background-color: #F4F4F4;
  padding: 15px;
  padding-top: 5px;
  border-radius: 25px;
}

pre {
  font-family: "Roboto", sans-serif;
  font-size: larger;
  font-size: 1rem;
  text-align: left;
}

body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
  max-width: 800px;
}

iframe {
  height: 520px; /*this measure is right for zoom level. to make this smaller, also adjust the camera zoom in Sketchfab and JS*/
  width: 100%;
  border: 0;
}

.header {
  text-align: center;
}

.title {
  font-size: 1.5rem;
  color:#0A2558;
  font-weight:800;
  margin-bottom: 1rem;
}

.subtitle {
  font-size: 1rem;
  font-weight: 400;
  opacity: 60%;
  margin-bottom: 1.5rem;
}

#us-text,
#mex-text,
#can-text,
#sko-text {
  display: none;
}

.logo {
  text-align: end;
}

#csis-logo-inline-source {
  height: 30px;
}

/*----------------------------------------*/
/*---------------BUTTONS------------------*/
/*----------------------------------------*/

.controls {
  display: flex;
  margin-right: auto;
  margin-left: auto;
  align-items: center;
  justify-content: space-between;
  max-width: fit-content;
  flex-wrap: nowrap;
  column-gap: 20px;
  height: 50px;
}

button {
  display: inline-flex;
  align-items: center;
  position: relative;
  border: none;
  border-radius: 4px;
  padding: 10px 12px;
  font-weight: 600;
  text-align: center;
  text-transform: uppercase;
  line-height: 1.2;
  cursor: pointer;
  transition: 0.2s;
  color: white;
  height: 25px;
  font-size: 12px;
}


/*USA*/
#us {
  background-color: #0a2558;
}
#us:hover {
  text-decoration: underline;
}

/*MEXICO*/
#mexico {
  background-color: #0a2558;
}
#mexico:hover {
  text-decoration: underline;
}

/*CANADA*/
#canada {
  background-color: #0a2558;
}
#canada:hover {
  text-decoration: underline;
}

/*SOUTH KOREA*/
#southkorea {
  background-color: #0a2558;
}
#southkorea:hover {
  text-decoration: underline;
}

/*----------------------------------------*/
/*----------------Clear------------------*/
/*----------------------------------------*/

#clear, #mobile-clear {
  background-color: transparent;
  text-transform: lowercase;
  color: grey;
  text-decoration: underline;
  font-size: 1rem;
  font-weight: 200;
}
#clear:hover {
  color: black;
}

#mobile-clear {
  display: none;
}

@media screen and (max-width: 450px) {
  #mobile-clear {
    display: block;
  }

  #clear {
    display: none;
  }
}
