body {
  font-family: "Montserrat", sans-serif;
  background-image: url("../images/back2.png");
  background-repeat: no-repeat;
  background-size: cover;
}
.container {
  max-width: 100%;
  margin: 0 auto;
}
.grid {
  display: grid;
}

.mylink {
  margin: 0 auto;
  font-weight: bolder;
  opacity: 100%;
}
.two-columns {
  grid-template-columns: 1fr 2fr;
  text-align: justify;
  gap: 20px;
}
.three-columns {
  grid-template-columns: 2fr 3fr 3fr;
}
.videos {
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
  text-align: justify;
}
.image-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-wrapper img {
  max-width: 100%;
  height: auto;
}
.image-wrapper-two {
  display: flex;
  justify-content: center;
  align-items: center;
}
.image-wrapper-two img {
  width: 90%;
  height: 90%;
  border: 1px double rgb(173, 239, 255);
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(255, 255, 255, 0.3);
  margin: 0 auto;
  margin-bottom: 30px;
}
.triangle-wrapper {
  display: flex;
  justify-content: center;
  margin: 80px 0;
}

.heike {
  display: flex;
  border: 1px double rgba(255, 255, 255, 0.5);
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(255, 255, 255, 0.3);
  justify-content: center;
  filter: contrast(140%);
  transition: transform 0.4s ease;
}
.heike:hover {
  display: flex;
  justify-content: center;
  border: 1px solid rgb(173, 239, 255);
  box-shadow: 0 4px 20px rgba(255, 255, 255, 0.3),
    0 0 10px rgba(173, 216, 230, 0.2), inset 0 0 5px rgba(255, 255, 255, 0.05);
  background-color: hsla(0, 0%, 0%, 0.315);
  transform: scale(1.05);
}

.triangle {
  max-width: 180px;
  display: flex;
  justify-content: center;
  filter: invert(100%);
}
.clips {
  background-color: transparent;
  border-top: 1px dotted rgba(255, 255, 255, 0.5);
  margin-top: 20px;
}
.clips h4 {
  font-weight: bold;
  font-size: 30px;
  line-height: 1.5;
  text-align: center;
}

.card {
  background-color: hsla(0, 0%, 0%, 0.45);
  box-shadow: 0 4px 20px rgba(255, 255, 255, 0.3);
  border-radius: 8px;
}
.lyrics {
  font-family: "Montserrat", serif;
  font-size: 18px;
  color: white;
  text-align: center;
  white-space: pre-wrap;
  font-family: "Montserrat", sans-serif !important;
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;

  margin: 20px auto;
  padding-left: 20px;
  padding-right: 20px;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  height: 90%;
  border: 1px double rgb(173, 239, 255);
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(255, 255, 255, 0.3);
}
.button-wrapper {
  text-align: center;
}
.card .button-wrapper {
  margin-top: 20px;
}

.card-button {
  font-weight: 200;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 1px;
  text-decoration: none;
  color: white;
  border: 1px solid white;
  border-radius: 20px;
  background-color: transparent;
  padding: 4px 10px;
  margin-top: 20px;
  margin-bottom: 32px;
  display: inline-block;
  text-align: center;
  box-shadow: 0 4px 20px rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
}

.card-button:hover {
  border: 1px solid rgb(173, 239, 255);
  box-shadow: 0 0 20px rgba(173, 239, 255, 0.6),
    inset 0 0 5px rgba(255, 255, 255, 0.05);
  background-color: hsla(0, 0%, 0%, 0.315);
}
.card-button,
header a {
  display: inline-block;
  margin-left: auto;
  margin-right: auto;
}

.projects {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  padding: 20px;
}
.two-columns-projects,
.three-columns-projects {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  width: 100%;
  justify-items: center;
}
.two-columns-projects a,
.three-columns-projects a {
  display: block;
  width: 100%;
  max-width: 300px;
}
.two-columns-projects img,
.three-columns-projects img {
  width: 100%;
  height: auto;
  border: 1px solid rgb(173, 239, 255);
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(255, 255, 255, 0.3);
  transition: transform 0.3s ease;
}
.two-columns-projects .triangle {
  border: none;
}

.two-columns-projects img:hover,
.three-columns-projects img:hover {
  transform: scale(1.05);
}

.audio-wrapper iframe {
  border: 1px double rgb(173, 239, 255);
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(255, 255, 255, 0.3);
}
main {
  padding-top: 50px;

  color: white;
}
main h2 {
  font-size: 46px;
  font-weight: bolder;
  text-align: center;
  line-height: 1.5;
}
main h3 {
  text-align: center;
  line-height: 1.5;
  font-weight: 200;
  font-size: 20px;
  letter-spacing: 2px;
  color: white;
  text-shadow: 0 0 10px rgba(173, 239, 255, 0.8),
    0 0 20px rgba(173, 239, 255, 0.6), 0 0 30px rgba(173, 239, 255, 0.4);
  text-decoration: underline;
}

main p {
  opacity: 0.8;
  line-height: 30px;
  font-size: 18px;
  padding-right: 10px;
}

header {
  background-image: url("../images/back2.png");
  background-repeat: no-repeat;
  background-size: cover;
  margin-top: 40px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(255, 255, 255, 0.3),
    0 0 10px rgba(173, 216, 230, 0.2), inset 0 0 5px rgba(255, 255, 255, 0.05);
  padding-bottom: 40px;
}
header h1 {
  font-size: 76px;
  font-weight: bold;
  font-style: normal;
  color: white;

  line-height: 1.5;
  margin: 0;
}
header h2 {
  font-size: 46px;
  font-weight: normal;
  color: white;

  line-height: 1.5;
  margin: 0;
}
header a {
  font-weight: 200;
  font-size: 26px;
  line-height: 1.5;
  letter-spacing: 1px;
  text-decoration: none;
  color: white;
  border: 1px solid white;
  border-radius: 20px;
  background-color: transparent;
  padding: 4px 10px;
  margin-top: 32px;
  margin-bottom: 10px;
  display: inline-block;
}
header a:hover {
  border: 1px solid rgb(173, 239, 255);
  box-shadow: 0 4px 20px rgba(255, 255, 255, 0.3),
    0 0 10px rgba(173, 216, 230, 0.2), inset 0 0 5px rgba(255, 255, 255, 0.05);
  background-color: hsla(0, 0%, 0%, 0.315);
}

footer {
  color: white;
  box-shadow: 0 4px 20px rgba(255, 255, 255, 0.3),
    0 0 10px rgba(173, 216, 230, 0.2), inset 0 0 5px rgba(255, 255, 255, 0.05);
  background-color: hsla(0, 0%, 0%, 0.315);
  margin-top: 40px;
}
footer h3 {
  font-size: 20px;
  font-weight: 700;
  line-height: 30px;
  margin-left: 20px;
}
footer ul {
  padding: 0;
}
footer li {
  list-style-type: none;
}
footer a {
  color: white;
  opacity: 0.8;
  margin-left: 20px;
  transition: all 0.3s ease;
}

footer a:hover {
  opacity: 1;
  text-shadow: 0 0 10px rgba(173, 239, 255, 0.8),
    0 0 20px rgba(173, 239, 255, 0.6);
}
footer p {
  opacity: 0.8;
  line-height: 24px;
  font-size: 16px;
  margin-left: 20px;
}

@media (max-width: 960px) {
  body {
    margin: 0 auto;
    margin-right: 0;
  }
  header {
    padding: 60px 0;
  }
  header h1 {
    font-size: 46px;
  }
  header h2 {
    font-size: 36px;
    margin-top: 20px;
    font-weight: 300;
  }
  header a {
    font-size: 16px;
    margin-top: 40px;
  }
  main h2,
  p {
    text-align: center;
  }
  main p {
    font-size: 16px;
    line-height: 28px;
    padding: 0 10px;
  }

  img {
    display: flex;
  }
  a {
    justify-content: center;
  }
  .grid {
    grid-template-columns: 1fr;
  }
  .three-columns {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .image-wrapper {
    justify-content: center;
    text-align: center;
  }
  .triangle {
    display: none;
  }
  .triangle-wrapper {
    display: none;
    margin: 0;
    padding: 0;
  }
  .audio-wrapper iframe {
    width: 100%;
    max-width: 320px;
    height: 100px;
    border: 1px double rgb(173, 239, 255);
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.3);
    margin: 0 auto;
    display: block;
  }

  footer h3,
  footer p,
  footer a {
    margin-left: 0;
  }
  footer p {
    padding-left: 10px;
    padding-right: 10px;
  }
  footer ul {
    padding-left: 0;
  }
}

@media (max-width: 600px) {
  body {
    margin: 0 auto;
  }

  .card {
    padding: 10px;
  }

  .card .lyrics {
    font-size: 16px !important;
    line-height: 1.4 !important;
  }

  .card h4 {
    font-size: 16px;

    margin: 0 !important;
    padding: 10px;
  }

  .videos {
    grid-template-columns: 1fr !important;
    gap: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
  }
  .audio-wrapper iframe {
    max-width: 300px;
    height: 80px;
  }
}
footer .me,
.website {
  padding-left: 10px;
}
main h2 {
  font-size: 28px;
}

main h3 {
  font-size: 16px;
  letter-spacing: 1px;
}
header h1 {
  font-size: 36px;
}

header h2 {
  font-size: 24px;
}
footer p {
  padding: 0 10px;
  font-size: 14px;
}

footer h3 {
  font-size: 16px;
}

@media (max-width: 768px) {
  .projects {
    padding: 10px;
  }

  .two-columns-projects,
  .three-columns-projects {
    grid-template-columns: 1fr;
  }

  .two-columns-projects a,
  .three-columns-projects a {
    max-width: 90%;
  }
  .two-columns-projects .triangle,
  .three-columns-projects .triangle {
    border: none;
    padding: 0;
    margin: 0;
    gap: 0;
  }
  .image-wrapper img.heike {
    max-width: 80%;
    height: auto;
    margin: 0 auto;
  }
}
