@font-face {
            font-family: "Cera Pro";
            src: url("fonts/CeraPro-Regular.woff") format("woff");
            font-weight: 400;
            font-style: normal;
        }

body {
  margin: 0;
  
  background: url("/img/site-BG.png") no-repeat;
  background-size: cover;
  background-attachment: fixed;
}

/*Layout*/

.content {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 25px;
  gap: 25px;
}

.content.narrow {
  padding: 0;                                                                       
  max-width: 1000px;
  width: 90%;
}

.content.tutorial_start {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 50px;
  gap: 50px;
}

.content.tutorial {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  padding: 50px;
  gap: 25px;
}

.tutorial_column{
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0px;
  gap: 25px;
  width: 100%
}

.tutorial_column img{
  width: 90%;
}

.navbar{
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 10px 25px;
  gap: 15px;
  
  background: linear-gradient(180deg, rgba(99, 102, 104, 0.5) 0%, rgba(69, 71, 71, 0.7) 50.52%, rgba(52, 52, 52, 0.7) 53.12%, rgba(0, 0, 0, 0.9) 100%);
  backdrop-filter: blur(10px);
  box-shadow: 0px 10px 15px rgba(0, 0, 0, 0.3), inset 0px 2px 1px rgba(255, 255, 255, 0.3), inset 0px -2px 1px rgba(0, 0, 0, 0.4);
}

.nav.desktop{
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  align-items: center;
  gap: 15px;
}

.nav.mobile{
  display: none;
}

.navlink{
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 5px;  
  align-items: center;
}

.navlink:hover{
  text-decoration: none;
}


.navbar img{
  height: 36px;
  box-shadow: none;
  background: none;
}

.vl {
  width: 1px;
  height: 36px;
  
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.225) 0%, rgba(255, 255, 255, 0.18) 35.94%, rgba(255, 255, 255, 0.27) 100%);
  box-shadow: -1px 0px 1px rgba(0, 0, 0, 0.4);
}

.hl {
  width: 100%;
  height: 1px;
  
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.225) 0%, rgba(255, 255, 255, 0.18) 35.94%, rgba(255, 255, 255, 0.27) 100%);
  box-shadow: -1px 0px 1px rgba(0, 0, 0, 0.4);
}

.navbar_tutorial_right{
  position: absolute;
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 10px 25px;
  gap: 15px;
  
  right: 0;
}

.navpage {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 15px 25px;
  gap: 15px;
  
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  
  background: linear-gradient(180deg, rgba(99, 102, 104, 0.5) 0%, rgba(69, 71, 71, 0.7) 50.52%, rgba(52, 52, 52, 0.7) 53.12%, rgba(0, 0, 0, 0.9) 100%);
  backdrop-filter: blur(10px);
  box-shadow: 0px 10px 15px rgba(0, 0, 0, 0.3), inset 0px 2px 1px rgba(255, 255, 255, 0.3), inset 0px -2px 1px rgba(0, 0, 0, 0.4);
  border-radius: 25px 25px 0px 0px;
}

img {
  box-shadow: inset 0px 2px 1px rgba(255, 255, 255, 0.3), inset 0px -2px 1px rgba(0, 0, 0, 0.4);
  filter: drop-shadow(0px 10px 15px rgba(0, 0, 0, 0.3));
}

.standalone_img{
  box-shadow: none;
  background: none;
}

.standalone_img.small{
  width: auto;
}

/*Mobile Menus*/

.menu_mobile{
  display: none;
  flex-direction: column;
  align-items: flex-start;
  padding: 0px;
  gap: 0px;
  width: 100%;
    
  background: linear-gradient(0deg, rgba(83, 85, 87, 0.5) 0%, rgba(14, 15, 15, 0.8) 100%);
  backdrop-filter: blur(10px);
  box-shadow: 0px 10px 15px rgba(0, 0, 0, 0.3), inset 0px 2px 1px rgba(255, 255, 255, 0.3), inset 0px -2px 1px rgba(0, 0, 0, 0.4);
}

.menu_mobile .navlink{
padding: 8px 15px;  
}

#menu_toggle {
  display: none;
}

#menu_toggle_label {
  cursor: pointer;
}

#menu_toggle:checked + .menu_mobile {
  transition: all 300ms ease;
  display: flex;
}

.orb{
  height: 36px;
  width: 36px;
  
  transition: all 300ms ease;
  background: url("img/Orb.png") no-repeat;
  background-size: 36px;
}

.orb:hover{
  transition: all 300ms ease;
  background: url("img/OrbGlow.png") no-repeat;
  background-size: 36px;
}

#disabled {
  filter: drop-shadow(0px -2px 1px rgba(0, 0, 0, 0.25));
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.375) 0%, rgba(255, 255, 255, 0.3) 35.94%, rgba(255, 255, 255, 0.45) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

/*content organization*/

.columns.two{
  display: grid;
  width: 100%;
  grid-template-columns: 49% auto;
  gap: 25px;
}

.columns.three{
  display: grid;
  width: 100%;
  grid-template-columns: 33% 33% auto;
  gap: 25px;
}

.tile {
  border-radius: 15px;
  padding: 25px;
  width: 100%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
  
  color: #fafafa;
  background: linear-gradient(180deg, rgba(83, 85, 87, 0.5) 0%, rgba(14, 15, 15, 0.8) 100%);
  backdrop-filter: blur(10px);
  box-shadow: 0px 10px 15px rgba(0, 0, 0, 0.3), inset 0px 2px 1px rgba(255, 255, 255, 0.3), inset 0px -2px 1px rgba(0, 0, 0, 0.4);
}

.tile.horiz {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 25px;
  justify-content: space-between;
}

.tile.horiz img{
  height: 150px;
  border-radius: 5px;
  filter: drop-shadow(0px -2px 1px rgba(0, 0, 0, 0.25));
border-radius: 5px;
  box-shadow: inset 0 0 rgba(0, 0, 0, 0);
}

.tile.img{
  gap: 15px;
  padding: 15px;
}

.tile.img img{
  width: 100%;
  border-radius: 5px;
  filter: drop-shadow(0px -2px 1px rgba(0, 0, 0, 0.25));
  border-radius: 5px;
}

.swatch {
  padding: 25px;
  width: 100%;
  height: 100px;
  box-sizing: border-box;
  
  border-radius: 15px;
  box-shadow: 0px 10px 15px rgba(0, 0, 0, 0.3), inset 0px 2px 1px rgba(255, 255, 255, 0.3), inset 0px -2px 1px rgba(0, 0, 0, 0.4);
}

@media only screen and (max-width: 850px) {
  .content {
    padding: 15px;
  }
  .narrow {
    width: 100%;
  }
  .content.tutorial_start, .content.tutorial {
    flex-direction: column;
  }
  .tile.horiz{
    flex-direction: column;
  }
  .nav.desktop{
    display: none;
  }
  .nav.mobile{
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    align-items: center;
    gap: 15px;
  }
  .standalone_img{
    width: 100%;
  }
}

@media only screen and (max-width: 1100px) {
  body{
    background-size: 250vh;
  }
  .tile.horiz img{
    height: 100px;
  }
  .columns{
    grid-template-columns: auto !important;
  }
}

/* Fonts */

a {
  color: #498ECD;
  text-decoration: none;
  word-break: break-all;
}

a:hover {
  text-decoration: underline;
}

a:has(i) {
  text-decoration: none;
  line-height: 0;
  word-break: normal;
}

a:has(h3, i):hover {
  line-height: 0;
  color: #a5a8a5 !important;
  text-decoration-thickness: 1px;
}

a:visited {
  color: #498ECD;
}

a.div {
  text-decoration: none;
  line-height: inherit;
  word-break: normal;
}

i{
  filter: drop-shadow(0px -2px 1px rgba(0, 0, 0, 0.25));
  background: linear-gradient(180deg, #878C87 0%, #D3D4D3 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  }

#curpage{
  background: linear-gradient(180deg, #85AED3 0%, #3971A4 48.44%, #498ECD 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

h1 {
  margin: 0 0 5px;
  font-weight: normal;
  font-family: "Cera Pro";
  font-style: normal;
  font-size: 36px;
  line-height: 125%;

  filter: drop-shadow(0px -2px 1px rgba(0, 0, 0, 0.25));
  background: linear-gradient(180deg, #878C87 0%, #D3D4D3 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  font-weight: 330;
}

h2 {
  margin: 0 0 5px;
  font-weight: normal;
  font-family: "Cera Pro";
  font-style: normal;
  font-size: 32px;
  line-height: 125%;

  filter: drop-shadow(0px -2px 1px rgba(0, 0, 0, 0.25));
  background: linear-gradient(180deg, #878C87 0%, #D3D4D3 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  font-weight: 330;
}

h3 {
  margin: 0;
  font-weight: normal;
  font-family: "Cera Pro";
  font-style: normal;
  font-size: 20px;
  line-height: 125%;

  filter: drop-shadow(0px -2px 1px rgba(0, 0, 0, 0.25));
  background: linear-gradient(180deg, #878C87 0%, #D3D4D3 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  font-weight: 330;
}

h4 {
  margin: 0;
  font-weight: normal;
  font-family: "Cera Pro";
  font-style: normal;
  font-size: 20px;
  line-height: 125%;

  filter: drop-shadow(0px -2px 1px rgba(0, 0, 0, 0.25));
  background: linear-gradient(180deg, #878C87 0%, #D3D4D3 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  font-weight: 420;
}

ul {
  margin: 0;
}

p, li {
  text-shadow: 0px -2px 1px rgba(0, 0, 0, 0.25);
  color: #E6E6E6;
  font-family: Cera Pro;
  font-size: 14px;
  margin: 0;
  font-weight: 420;
}

sub {
  text-shadow: 0px -2px 1px rgba(0, 0, 0, 0.25);
  color: #E6E6E6;
  font-family: Cera Pro;
  margin: 5px 0 0 0;
  font-weight: 420;
}

TABLE  

*/
table {
  border-collapse: collapse;
  max-width:550px;
}

td,tr {
	  font-weight: normal;
  font-family: "Cera Pro";
  font-style: normal;
  font-size: 20px;
  border: 1px solid #bbb;
  line-height: 20px;
  padding: 10px;
  color:white;
}
/* 