/* General Reset */
a {
  text-decoration: none;
}
hr {
  margin: 0;
}
button {
  border: none;
  cursor: pointer;
}

/* Greeting Section */
#greeting {
  position: absolute;
  z-index: 5;
  background: linear-gradient(to right, #4facfe, #00f2fe);
  width: 20cm;
  height: 3cm;
  font-size: 2rem;
  display: flex;
  justify-content: space-between;
  margin-left: 30%;
  border-radius: 0 0 50px 50px;
}

#wish {
  padding: 30px;
  color: black;
}

#close {
  position: absolute;
  right: 0;
  font-size: 30px;
}

/* Navbar */
#navbar-items > a {
  text-decoration: none;
  color: white;
  padding: 20px;
  font-size: 2rem;
  transition: background-color 0.3s, color 0.3s;
}

#navbar-items > a:hover {
  background-color: goldenrod;
  color: black;
}

/* Background and Header */
#cracker {
  position: absolute;
  z-index: -1;
  height: 100vh;
  width: 100%;
}

header {
  height: 100vh;
  width: 100vw;
}

header > h1 {
  padding: 5% 0 0 5%;
  font-size: 3rem;
}

/* Blockquote */
blockquote {
  padding-top: 15%;
  margin: 5%;
  font-size: 3rem;
  font-style: italic;
  color: #333;
}

/* About Section */
#aboutME {
  display: flex;
  justify-content: space-around;
  width: 100%;
  padding: 2%;
}

#aboutmeContent {
  font-size: 1.5rem;
  padding-top: 8%;
}

/* Skills Section */
#skillsLearned,
#skillsLearning {
  display: flex;
  justify-content: space-evenly;
}

#vsc {
  height: 150px;
}

/* Work Section */
#workPart {
  display: flex;
  justify-content: space-evenly;
  padding: 2%;
}

#project {
  padding-bottom: 2%;
}

#projectButtons {
  display: flex;
  justify-content: space-evenly;
}

#projectButtons > button > a {
  color: white;
  transition: color 0.3s;
}

#projectButtons > button > a:hover {
  color: black;
}

#projectsImage {
  height: 40vh;
  width: 50vh;
}

.projectContainer {
  padding: 1%;
  border: 1px solid #ddd;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Contact Section */
#contact {
  padding: 5%;
  background-color: rgb(224, 222, 222);
  text-align: center;
}

#error_a8d563a1ba5a7b5d160177fee96b7b157d4504f8 > a {
  color: white;
}

/* Image Styling */
image {
  height: 1cm;
  width: 1cm;
  border-radius: 50%;
}

/* Responsive Design */
@media only screen and (max-width: 600px) {
  #greeting {
    width: 7cm;
    height: 3cm;
    font-size: 1.2rem;
  }

  #wish {
    padding: 20px;
  }

  #close {
    font-size: 15px;
  }

  #navbar-items > a {
    font-size: 1.1rem;
  }

  header > h1 {
    text-align: center;
    padding-top: 15%;
    font-size: 2rem;
  }

  blockquote {
    padding-top: 90%;
    font-weight: bold;
    font-size: 2rem;
  }

  #aboutME {
    display: block;
  }

  #aboutme_image {
    height: 90vh;
    width: 90vw;
  }

  #skillsLearned,
  #skillsLearning > img {
    height: 50px;
    
  }

  #vsc {
    height: 40px;
  }

  #workPart {
    display: block;
    padding: 5%;
  }

  #workPart > div > img {
    width: 10vh;
  }
}
