/* body {
    font-family: 'Segoe UI';
} */

* {box-sizing: border-box}
body {
  font-family: "Lato", sans-serif;
  background-image: linear-gradient(45deg, rgba(75, 109, 151, 0.3) 0%, rgba(75, 109, 151, 0.3) 7%,rgba(47, 165, 182, 0.3) 7%, rgba(47, 165, 182, 0.3) 9%,rgba(20, 222, 213, 0.3) 9%, rgba(20, 222, 213, 0.3) 38%,rgba(45,10,87, 0.3) 38%, rgba(45,10,87, 0.3) 42%,rgba(89, 81, 136, 0.3) 42%, rgba(89, 81, 136, 0.3) 58%,rgba(34, 194, 198, 0.3) 58%, rgba(34, 194, 198, 0.3) 61%,rgba(61, 137, 167, 0.3) 61%, rgba(61, 137, 167, 0.3) 83%,rgba(82,34,149, 0.3) 83%, rgba(82,34,149, 0.3) 100%),linear-gradient(45deg, rgba(179, 180, 240, 0.3) 0%, rgba(179, 180, 240, 0.3) 12.5%,rgba(203, 187, 249, 0.3) 12.5%, rgba(203, 187, 249, 0.3) 25%,rgba(132, 166, 221, 0.3) 25%, rgba(132, 166, 221, 0.3) 37.5%,rgba(191, 184, 244, 0.3) 37.5%, rgba(191, 184, 244, 0.3) 50%,rgba(167, 177, 235, 0.3) 50%, rgba(167, 177, 235, 0.3) 62.5%,rgba(120, 163, 216, 0.3) 62.5%, rgba(120, 163, 216, 0.3) 75%,rgba(144, 170, 225, 0.3) 75%, rgba(144, 170, 225, 0.3) 87.5%,rgba(156, 173, 230, 0.3) 87.5%, rgba(156, 173, 230, 0.3) 100%),linear-gradient(230deg, rgb(127,246,255),rgb(9,27,218));
  
  
  /* Set a specific height */
   min-height: 500px; 
   color:black;
  
   /* Create the parallax scrolling effect */
   background-attachment: fixed;
   background-position: center;
   background-repeat: no-repeat;
   background-size: cover;
}


.hero {

  height: 500px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;

  margin-top:20px;
  margin-bottom:20px;
}

.hero .text {
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
}

.hero .text h1 {
  font-size: 70px;
}





/* Style the tab */
.tab {
  /* margin: 20px; */
  float: left;
  /* border: 1px solid #ccc; */
  /* background-color: #000000d0; */
  width: 16%;
  min-height: 600px;
}
  
/* Style the buttons inside the tab */
.tab button {
  display: block;
  background-color: rgba(255, 255, 255, 0.493);
  padding: 22px 16px;
  width: 100%;
  border: none;
  outline: none;
  text-align: left;
  cursor: pointer;
  transition: 0.3s;
  font-size: 17px;
}
  
/* Change background color of buttons on hover */
.tab button:hover {
  background-color: rgb(124, 149, 231);
}
  
/* Create an active/current "tab button" class */
.tab button.active {
  background-color: rgba(255, 255, 255, 0.863);
}
  
/* Style the tab content */
.tabcontent {
  margin-bottom: 70px;
  background-color: rgba(255, 255, 255, 0.863);
  float: left;
  padding: 10px;
  /* border: 1px solid #ccc; */
  width:84%;
  border-left: none;
  min-height: 810px;
}


.tabcontent img {
  /* width: 100%; */
  /* min-width: 100%; */
  max-width: 100%;
  max-height: 500px;
}




/* Create two equal columns that floats next to each other */
.column {
  float: left;
  width: 56%;
  height: 100%;
  /* border:2px solid lightgreen; */
  margin: 10px;
  /* text-align: center;
  vertical-align: middle; */
}
.column2 {
    float: left;
    width: 40%;
    height: 100%;
    /* border:2px solid lightgreen; */
    margin: 10px;
    /* text-align: center;
    vertical-align: middle; */
  }

/* Clear floats after the columns */
.row:after {
  column-count: 2;
  content: "";
  display: table;
  clear: both;
}

/* Responsive layout - makes the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
  .column {
    width: 100%;
  }
  .tabcontent img {
    width: 80%;
  }

}






a {
  color: rgb(0, 55, 128);
}

.main {
  background-color: white;
  padding: 20px;
  width:100%;
  /* height: 600px; */
}

li{
  padding: 5px;
}

li a {
  color:#1d4baf
}

code { 
  color: rgb(0, 204, 255);
  background-color: rgb(27, 27, 27);
  padding: 5px;
  border-radius: 10px;
}