@import url('https://fonts.googleapis.com/css2?family=Lexend:wght@600&family=Oswald:wght@500&display=swap');

body {
  background-color: #2A363B;
  color: white;
  margin: 0;
  padding: 0;
}

nav {
  display: flex;
  text-decoration: none;
  font-size: 20px;
  font-family: Lexend;
  background-color: #355C7D;
  overflow: hidden;
  padding: 0;
  margin: 0;
  border-radius: 8px;
}

nav a{
  color: white;
  text-decoration: none;
  transition-duration: 0.3s;
}

nav a:hover {
  font-size: 23px;
}

header {
  font-family: Lexend;
  width: 384px;
  margin-left: 80px;
  margin-top: 130px;
}

header p {
  letter-spacing: 0.9px;
}

.language {
  display: flex;
  flex-direction: column;
}

.languages {
  font-family: Lexend;
  margin-left: 180px;
  margin-top: 50px;
}

.learning {
  font-size: inherit;
  font-family: Lexend;
  margin-top: 100px;
  margin-left: 170px;
  margin-bottom: 40px;
}

.svg {
  height: 50px;
  width: 50px;
  transition-duration: 0.4s;
}

.svg:hover {
  transform: scale(1.1);
}

.logo {
  height: 120px;
  width: 120px;
  border-radius: 40px;
  margin-left: 30px;
  margin-top: 170px;
  transition-duration: 0.4s;
}

.logo:hover {
  transform: scale(1.3);
}

.projects {
  font-family: Lexend;
}

.projects h1{
  font-size: 40px;
  text-align: center;
}

.projects hr{
  width: 300px;
}

.projects p{
  font-size: 15px;
  text-align: center;
}

.celestial {
  background-color: #2D142C;
  height: 450px;
  width: 450px;
  border-radius: 8px;
  margin-left: 150px;
  margin-top: 40px;
  margin-bottom: 10px;
  transition-duration: 0.4s;
}

.celestial:hover {
  transform: translateY(-5px);
}

.skills {
  font-family: Lexend;
}

#stfu {
  font-size: 40px;
  text-align: center;
}

.skills p {
  font-size: 25px;
  text-align: center;
}

.skills hr {
  width: 300px;
}

.skills-cont {
  height: 130px;
  width: 420px;
  background-color: #1E2425;
  border-radius: 8px;
  margin-left: 20px;
  margin-bottom: 30px;
  transition-duration: 0.3s;
}

.skills-cont h1 {
  font-size: 25px;
}

.bar {
  background-color: white;
  border-radius: 20px;
  height: 30px;
  width: 98%;
  overflow: hidden;
  margin-left: 5px;
}

.progress {
  background-color: #00DDFF;
  border-radius: 20px;
  width: 100%;
  height: 100%;
}

.skills-cont:hover {
  transform: scale(1.05);
}

