/* Poppins */
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
/* Inter */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap");
/* Tilt Neon */
@import url("https://fonts.googleapis.com/css2?family=Tilt+Neon&display=swap");
/* Poppins */
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
/* Inter */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap");
/* Tilt Neon */
@import url("https://fonts.googleapis.com/css2?family=Tilt+Neon&display=swap");
* {
  box-sizing: border-box;
}

.content section {
  max-width: 100%;
  min-height: 100vh;
  padding: 3%;
  flex: 1;
  background: linear-gradient(90deg, #851de9 0%, #25c7f9 100%);
  background-color: rgba(128, 128, 128, 0.7);
  background-blend-mode: multiply;
  overflow: hidden;
}

.content section#about .background .text button, .content section#home .menu button {
  border-style: solid;
  border-color: #089afc;
  border-radius: 15px;
  border-width: 2px;
  min-width: 120px;
  padding: 8px;
  font-family: "Poppins", sans-serif;
  font-size: 1.1rem;
  font-weight: 400;
  cursor: pointer;
  color: #17cc17;
  background-color: rgba(37, 199, 249, 0);
  transition: 350ms ease;
}

.content section#about .background .text button:hover, .content section#home .menu button:hover {
  background-color: #089afc;
  color: white;
}

.content section#resources .content .websites, .content section#resources .content .youtubers, .content section#about .background {
  background-color: rgba(0, 0, 0, 0.2);
  padding: 2%;
}

.content section#projects h1, .content section#resources h1 {
  text-align: center;
  color: white;
  font-size: clamp(0.6rem, 2vw + 2em, 2.5em);
  margin: 0;
  padding-bottom: 2%;
}

.content section#projects .content .page#one .project h2 {
  text-align: center;
  color: white;
}
.content section#projects .content .page#one .project img {
  width: 225px;
}

* {
  box-sizing: border-box;
}

body, html {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
  height: 100%;
}

a {
  cursor: pointer;
  text-decoration: none;
  color: white;
}

body::-webkit-scrollbar {
  background-color: transparent;
  background: transparent;
}

.content {
  font-family: "Tilt Neon", sans-serif;
}
.content section#home {
  display: flex;
  flex-direction: column;
  gap: 1%;
  justify-content: center;
  align-items: center;
}
.content section#home img {
  width: clamp(1rem, 15vw + 15rem, 550px);
}
.content section#home h1 {
  text-align: center;
  color: white;
  font-size: clamp(0.5rem, 5vw + 10rem, 1.4rem);
}
.content section#home .menu {
  display: flex;
  flex-direction: row;
  gap: 1%;
  justify-content: center;
  align-items: center;
  margin: 1%;
}
.content section#about {
  display: flex;
  flex-direction: row;
  gap: 1%;
  justify-content: center;
  align-items: center;
}
.content section#about .background {
  min-height: 100%;
  display: flex;
  flex-direction: row;
  gap: 1%;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 100%;
  border-radius: 20px;
}
.content section#about .background img {
  width: clamp(200px, 10vw + 15em, 390px);
}
.content section#about .background .text {
  display: flex;
  flex-direction: column;
  gap: 1%;
  justify-content: center;
  align-items: flex-start;
  text-align: none;
  color: white;
  font-size: clamp(0.6rem, 1vw + 0.8em, 1.3em);
}
.content section#resources {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1%;
  justify-content: center;
  align-items: center;
}
.content section#resources .content {
  flex: 1;
  width: 100%;
  min-height: 90%;
  border-radius: 0;
  display: flex;
  flex-direction: row;
  gap: 2%;
  justify-content: center;
  align-items: center;
}
.content section#resources .content a {
  position: relative;
  transition: 350ms ease;
  font-size: clamp(1em, 1vw + 1em, 1.45em);
  text-align: center;
}
.content section#resources .content a:hover {
  font-size: clamp(1em, 1vw + 1em, 1.7em);
  font-weight: 900;
}
.content section#resources .content h1 {
  color: rgb(23, 204, 23);
}
.content section#resources .content .youtubers {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1%;
  justify-content: center;
  align-items: center;
  width: 48%;
  min-height: 100%;
  border-radius: 20px;
}
.content section#resources .content .websites {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1%;
  justify-content: center;
  align-items: center;
  width: 48%;
  min-height: 100%;
  border-radius: 20px;
}
.content section#projects .content .page#one {
  min-height: 100vh;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  row-gap: 4vmin;
  column-gap: 4vmin;
}
.content section#projects .content .page#one .project {
  border-radius: 20px;
}
.content section#projects .content .page#one .project .image-frame {
  display: flex;
  align-items: center;
  flex: 1;
  max-height: 225px;
}
.content section#projects .content .page#one .project#kumalamotor {
  padding: 2%;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-image: url("https://ik.imagekit.io/wi13omdv75/kumalamotor/sampul_part.jpg?updatedAt=1657513867120");
  background-size: cover;
  background-repeat: no-repeat;
  background-color: rgba(128, 128, 128, 0.65);
  background-blend-mode: multiply;
  transition: 350ms ease;
  cursor: pointer;
}
.content section#projects .content .page#one .project#kumalamotor:hover {
  background-color: rgba(128, 128, 128, 0.85);
}
.content section#projects .content .page#one .project#hgloowgallery {
  padding: 2%;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-image: url("https://ik.imagekit.io/wi13omdv75/gallery/sampul_crop43_2uyg4GZ9m.jpg?updatedAt=1657474161279");
  background-size: cover;
  background-repeat: no-repeat;
  background-color: rgba(128, 128, 128, 0.65);
  background-blend-mode: multiply;
  transition: 350ms ease;
  cursor: pointer;
}
.content section#projects .content .page#one .project#hgloowgallery:hover {
  background-color: rgba(128, 128, 128, 0.85);
}
.content section#projects .content .page#one .project#himti-internship {
  padding: 2%;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-image: url("https://ik.imagekit.io/wi13omdv75/_7C9BAD.png?updatedAt=1680163428039");
  background-size: cover;
  background-repeat: no-repeat;
  background-color: rgba(128, 128, 128, 0);
  background-blend-mode: multiply;
  transition: 350ms ease;
  cursor: pointer;
}
.content section#projects .content .page#one .project#himti-internship:hover {
  background-color: rgba(128, 128, 128, 0.3);
}/*# sourceMappingURL=tes.css.map */