/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body {
  background: linear-gradient(to bottom, #dae8e8, #85c7d6);
  color: #071b26;
  font-family: Sirin;
}

.header {
  position: -webkit-sticky;
  position: sticky;
  display: flex;
  overflow: hidden;
  z-index: 1;
  background-color: rgba(30, 106, 148, 1);
  
  margin: auto;
  top: 10px;
  padding:2px;
  border-radius: 15px;
}

.header_item{
  align-content: center;
  width: auto;
  font-size: 50px;
  padding:10px;
  color: white;
}

.button_set{
  align-content: center;
  margin-left: auto;
  margin-right: 0;
  overflow: hidden;
  font-size: 30px;
  color: white;
}

.featured{
  display: inline-block;
  padding: 2%;
  border-radius: 15px;
  background-color: #0f2f40;
  width: 40%;
  margin-top: 1%
}

.featured img{
  width: 100%;
  display: block;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
}

.button{
  float: left;
  background-color: #b8773b;
  border-radius: 5px;
  padding: 10px;
  margin:15px;
}

.projects{
  display: inline-block;
  vertical-align: top;
  width: 55%
}

.single_project{
  background-color: #0f2f40;
  border-radius: 15px;
  margin: 2%;
  width: 45%;
  display: inline-grid;
  color: white;
  position: relative;
  text-align: center;
  font-size: 20px;
}

.project_icon{
  display: block;
  justify-content: center;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 5%;
}

.overlay{
  position: absolute;
  top: 15%;
  bottom: 0;
  left: 30%;
  right: 0;
  height: 50%;
  opacity: 0;
  transition: .5s ease;
}

.project_page{
  width: 80%;
  margin-top: 2%;
  padding: 5%;
  padding-top: 2%;
  margin-left: auto;
  margin-right: auto;
  background-color: rgba(30, 106, 148, 0.5);
  border-radius: 15px;
  font-size: 20px;
}

.project_page img{
  width: 90%;
  display: block;
  margin-left: auto;
  margin-right: auto;
  justify-content: center;
}

.scroll_container{
  display: flex;
  align-items: center;
  margin: auto;
  width: 90%;
  overflow: hidden;
  padding: 10px;
}

.scroll{
  display: flex;
  overflow-x: scroll;
  white-space: nowrap;
}

.scroll img{
  padding: 10px;
  width: 50%;
}


a:hover .overlay{
  opacity: 1;
}

a{
  text-decoration: none;
  color: inherit;
}

img{
  border-radius: 15px;
}

.intro{
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-top: 2%;
  width: 95%;
  background-color: rgba(30, 106, 148, 1);
  padding: 15px;
  border-radius: 15px;
  color: white;
}

#fullpage {
  display: none;
  position: absolute;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-size: contain;
  background-repeat: no-repeat no-repeat;
  background-position: center center;
  background-color: black;
}

.full-body {
  display: none;
  position: fixed;
  z-index: 2;
  padding-top: 100px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgb(0,0,0);
  background-color: rgba(0,0,0,0.9);
}

.full-image {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 700px;
}


h1{
  text-align: center;
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  color: transparent;
}

::-webkit-scrollbar-thumb {
  background: #0f2f40;
  border-radius: 15px;
}

@font-face {
  font-family: Sirin;
  src: url(Fonts/Sirin.ttf);
}