@import url("https://fonts.googleapis.com/css2?family=JetBrains+Mono:ital,wght@0,300;1,200;1,400;1,500&display=swap");

@import url("https://fonts.googleapis.com/css2?family=JetBrains+Mono:ital,wght@0,300;1,200;1,400;1,500&family=Orbitron:wght@500&display=swap");

@import url("https://fonts.googleapis.com/css2?family=JetBrains+Mono:ital,wght@0,300;1,200;1,400;1,500&family=Orbitron:wght@500&family=Space+Mono&display=swap");

body {
  margin: 0;
  padding: 0;
  color: azure;
}

.background-image {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: linear-gradient(rgba(0,0,0,0.6),rgba(0,0,0,0.6)),url(./images/city2.gif);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: -1;
}
@media only screen and (max-width: 600px) {
  /* Styles for mobile devices */
  body {
    background-attachment: fixed;
  }
}
.row {
  text-align: center;
}
.row > div {
  border: 4px solid rgb(71, 83, 94);
  border-radius: 10px;
  border-style: none;
}
.heading h1 {
  position: relative;
  /* text-transform: uppercase; */
  font-family: "Orbitron", sans-serif;
  margin: auto 0;
  margin-top: 30vh;
  letter-spacing: 0.3em;
  justify-content: center;
}

.about-me {
  text-align: left;
  margin-top: 30vh;
  font-family: "Orbitron";
  letter-spacing: 3px;
}
.Projects,
.Contact {
  text-align: left;
  font-family: "Orbitron";

  letter-spacing: 3px;
}
.about-me p {
  margin-top: 30px;
  letter-spacing: 0.3em;
}
.Projects h2,
p {
  letter-spacing: 0.3em;
}
.Projects h3,
.about-me h3,
.Contact h3 {
  color: #12bc15;
}
.display-3 {
  color: #1a0af4;
  margin-top: 5px;
}
.heading .sub {
  margin-top: 30px;
  text-align: center;
  align-items: center;
  display: grid;
}

.heading .sub > a {
  padding: 10px;
  display: inline-block;
  font-family: "Orbitron";
  letter-spacing: 7px;
  text-decoration: none;
  color: rgb(6, 88, 240);
  font-size: 30px;
  transition: 0.4s;
}
.heading .sub > a:hover {
  transition: 0.3s;
  color: rgb(6, 88, 240);
  font-size: 40px;
}

.socials {
  display: flex;
  width: 200px;
  list-style: none;
}
.socials a {
  font-size: 50px;
  margin-left: 30px;
}
.icons {
  display: flex;
}
#right-volume {
  position: fixed;
  bottom: 10px;
  right: 10px;
  background-color: rgb(194, 195, 194);
  border: none;
  padding: 10px;
  z-index: 9;
}

#right-volume img {
  width: 30px;
}


