@import 'mediaquery.css';
.project {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(3, auto); 
  gap: 15px;
  align-items: center;
  border-radius: 10px;
}
.links {
  display: flex;
  gap: 10px;
}
.project a {
  background-color: #333333;
  color: #ffffff;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  transition: background-color 0.3s ease-in-out;
}

.project a:hover {
  background-color: #000000;
}

.project:nth-child(odd) {
  background-color: #dcdcdc; 
}

.project img {
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
  transform: scale(1);
  border-radius: 10px;
}

.project img:hover {
  transform: scale(1.05);
}

.typewriter {
  overflow: hidden;
  border-right: 0.15em solid black;
  margin: 0 auto;
  white-space: pre;
  letter-spacing: 0.15em;
  animation: typing 2s steps(40, end),
             blink-caret 0.75s step-end infinite;
}
.space {
  display: inline-block;
  width: 0.5em;
}
@keyframes typing {
  from { width: 0; }
  to { width: 7ch; }
}
@keyframes blink-caret {
  from, to { border-color: transparent; }
  50% { border-color: black; }
}
body {
  background-color: #f0f0f0;
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  line-height: 1.6; 
  scrollbar-width: thin;
  scrollbar-color: #333333 #f0f0f0;
}

body::-webkit-scrollbar {
  width: 10px;
}

body::-webkit-scrollbar-thumb {
  background-color: #333333;
  border-radius: 5px;
}

body::-webkit-scrollbar-track {
  background-color: #f0f0f0;
  border-radius: 5px;
}
header {
  width: 100%;
  height: 60px;
  background-color: #ffffff;
  border-bottom: 1px solid #d9d9d9;
}
header::before {
  background: radial-gradient(ellipse at center bottom, black 0%, transparent 100%);
}
.tab {
  width: 97%;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.tab button {
  background-color: inherit;
  float: left;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 14px 16px;
  transition: 0.3s;
  font-family: 'Montserrat', sans-serif;
  border-radius: 10px; 
  font-size: 16px;
  font-weight: bold;
}
.tab button:hover {
  background-color: #d9d9d9;
}
.tab button.active {
  background-color: #bfbfbf;
}
.tabcontent {
  display: none;
  padding: 6px 12px;
  border: 1px solid transparent; 
  border-top: none;
  transition: 0.5s;
 }
.tabcontent h3 {
  font-size: 24px;
 }
.tabcontent img {
  width: 300px;
  height: auto;
 }
    .tablinks {
      display: none;
    }
    .tablinks.show {
      display: block;
    }
    .footer {
      background-color: #333333; 
      color: #ffffff; 
      text-align: center; 
      padding-top: 10px; 
      padding-bottom: 10px; 
      margin-top: auto; 
      font-family: 'Montserrat', sans-serif; 
      font-size: 14px;
      display: flex;
      flex-direction: column;
      align-items: center;
    }
    .footer a { 
      color: #ffffff; 
      text-decoration: none;
      font-weight: bold;
    }
    .footer a:hover { 
      color: #cccccc;
      transform: scale(1.1);
    }
    .footer img {
      width: 100px; 
      height: auto;
      display: inline-block; 
      margin-right: 10px;
    }
  .icons {
      display: flex;
      justify-content: space-between;
      width: 500px;
    }
   .name {
      text-align: left;
      font-family: 'Roboto', sans-serif;
      font-size: 16px;
      margin-left: 10px;
      margin-right: 20px;
      font-weight: bold;
      transition: all 0.3s ease-in-out;
    }
.tabcontent p {
  font-size: 16px;
}

.project p {
  font-weight: bold;
}
