* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: #24273a;
  font-family: 'JetBrains Mono', monospace;
  color: #cad3f5;
}

.nav-bar {
  overflow: hidden;
}

.nav-bar a {
  float: left;
  text-align: center;
  padding: 20px 15px;
  text-decoration: none;
  font-size: 17px;
  color: #cad3f5;
}

.profile-img {
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-top: 6vh;
  width: 30vw;
  border: solid 1vh;
  border-color: #363a4f;
  border-radius: 100%;
}

@media only screen and (max-width: 800px) {
  .profile-img {
    width: 50vw;
  }
}

@media only screen and (max-width: 450px) {
  .profile-img {
    width: 60vw;
  }
}

#hello-console {
  font-size: 30px;
  margin-top: 10vh;
  text-align: center;
}

@media only screen and (max-width: 1100px) {
  #hello-console {
    margin-top: 25vh;
  }
}

#socials {
  bottom: 0; 
  width: 100%;
  position: fixed;
  display: flex;
  justify-content: center;
}

#socials img {
  width: 32px;
  height: 32px;
  margin: 20px;
  margin-top: 7vh;
}

#about {
  text-align: center;
  font-size: 25px;
}

.about-text {
  text-align: start; 
  margin-top: 5%;
  padding-left: 17%;
  padding-right: 17%;
}

@media only screen and (max-width: 800px) {
  #about {
    font-size: 18px;
  }
  .about-text {
    padding-left: 7%;
    padding-right: 7%;
  }
}

.about-technologies {
  margin-top: 15%;
  text-align: center;
}

.about-technologies img {
  margin-top: 20px;
  margin-bottom: 30px;
  height: 100px;
  width: 100px; 
}
