::-webkit-scrollbar {
  display: none;
}
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body{
  background-color: #000409;
  display: flex;
  justify-content: center;
  position: relative;

}

.container{
  display: flex;
  justify-content: center;
}

@media(min-width:800px){
nav{
  position: fixed;
  top: 0;
  display: flex;
  justify-content: end;
  width: 100%;

  padding: 13px;
  z-index: 5;
}

nav a{
  display: flex;
  justify-content: center;
  text-decoration: none;
  color: #DDE6ED;
  font-size: 15px;
  padding: 15px 20px;
  gap: 3px;
  font-family: Arial, Helvetica, sans-serif;
}
}
@media (max-width:800px){
  nav{
    position: fixed;
    left: 50%;
    bottom: 3rem;
    transform: translate(-50%);


    display: flex;
    justify-content: space-between;
    padding: 20px 15px;
    border-radius: 3rem;
    background: rgba(45, 55, 80, 0.3);
    backdrop-filter: blur(15px);
    z-index: 5;
    width: 90%;
  }
  nav a{
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    padding: 6px;
    color: #babec2;
    font-size: 1.1rem;
    font-family: Arial, Helvetica, sans-serif;
    width: 100%;
  }

}
  .logo{
  position: fixed;
  left: 3%;
  top: 3%;
  display: flex;
  flex-direction: column;
  color: #526D82;
  text-decoration: none;
  font-family: Arial, Helvetica, sans-serif;
  z-index: -1;
}

.logo span{
  color: #9DB2BF;
  font-size: 10px;
}

.home{
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  margin-top: 200px;
}

@media (max-width:800px){
  .home{
    margin-top: 100px;
    text-align: center;
  }

  .socials> h4{
    grid-column: span 2;
    text-align: center;
  }
}

.home .intro{
  color: #DDE6ED;
  order: 1;
  font-family: Arial, Helvetica, sans-serif;
}

h1{
  font-weight: bold;
}
h3{
  color: #526D82;
}
h5{
  color: #526D82;
}

.socials{
  margin-top: 30px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;

}



.socials> .btn{
  margin-top: 0;
}
.btn{
  padding: 10px;
  border: none;
  border-radius: 10px;
  margin-top: 20px;
  background-color: #161f2b;
  color: white;
  cursor: pointer;
  text-decoration: none;
  justify-content: center;
  text-align: center;
}
.btn:hover{
  background-color: #DDE6ED;
  color: #161f2b;
}
.home img{
  width: 200px;
  border-radius: 50%;
  background-color: #161f2b;
}
@media(min-width:800px){
  .home img{
    width: 250px;
  }
  .home{
    gap: 3rem;
  }
  .socials> h4{
    grid-column: span 2;
    text-align: start;
    color: #babec2;
  }
}



.about img{
  width: 400px;
  border-radius:20px;
}


.about{
  display: none;
  color: wheat;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  width: 70%;
  margin-top: 100px;
}

@media(min-width:800px){
.about-col-1{
  width: 100%;
  display: flex;
  gap: 1rem;
}
}
.tab-title{
  display: flex;
  margin: 20px 0 40px;
  gap: 5rem;
}
.tab-title > div {
  font-family: Arial, Helvetica, sans-serif;
}
.tab-title > div > h4{
  font-size: bolder;
  margin-bottom: 5px;
  color: #DDE6ED;
}
.tab-title > div > h5{
  color: #9DB2BF;
  margin-top: 5px;
}

@media(max-width:800px){
  .about img{
    width: 100%;
  }

  .about{
    flex-wrap: wrap;
    margin-top: 100px;
    width: 95%;
    margin-bottom: 200px;
  }
  .tab-title{
    display: flex;
    gap: 1rem;
  }
}

.about .intro h2{
  color: #DDE6ED;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 30px;
}

.about .intro h4{
  margin-top: 0.8rem;
  font-family: 'Libre Baskerville', serif;
  font-family: 'Roboto', sans-serif;
  font-size: small;
  color: #babec2;
}


.project-container{
  display: none;
  position: fixed;
  top: 0;
  background: rgb(0, 0, 0, 0.6);
  backdrop-filter: blur(15px);
  width: 100%;
  height: 100%;
}

.image-link{
  position: absolute;
  left: 50%;
  transform: translate(-50%);
   
  height: 80%;
  width:75% ;


  display: flex;
  flex-wrap: wrap;


  scroll-behavior: smooth;
  overflow-y: scroll;
  box-sizing: border-box;
  margin-top: 7%;
  object-fit: cover;
  border-radius: 15px;
  gap: 1rem;
}


.image-link>.project-card{
  display: flex;
  flex-direction: row;
  width: 100%;
  flex: 1;
  justify-content: center;
  gap: 0.9rem;
  flex-wrap: wrap;

  box-sizing: border-box;
  object-fit: cover;
}

@media (max-width:800px){
  .project-card{
    margin: 0;
  }
  
}

.image-link>.project-card>div>img{
  position: relative;
  width: 250px;
  height: 200px;
  object-fit: cover;
  border-radius: 15px;
}

.project-card> div > a {
  text-decoration: none;
}

.project-card > div > h3{
  margin: 1rem 0;
  color: #9DB2BF;
  font-family: Arial, Helvetica, sans-serif;
}

.btn-primary{
  background-color: transparent;
  color: #9DB2BF;
  border: 1px solid #DDE6ED;
  
}
