@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Jersey+15&family=Sixtyfour+Convergence&family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');

.container {
  display: grid;
  grid-template-areas:
    "pro about about about about about"
    "pro other other other other other"
    "footer footer footer footer footer footer";
  gap: 24pt;
  padding: 24pt;
}

.left-content {
  grid-area: pro;
}

.about {
  grid-area: about;
}

.honors {
  grid-area: other;
}

.footer {
  grid-area: footer;
}

section {
  transition: .8s;
  padding: 24pt;
  background-color: var(--menu-text-bg);
  border-radius: 12pt;
}

section h3 {
  margin-top: -5pt;
}

.social-icons {
  margin-top: 6pt;
  margin-right: 24pt;
}

#profile {
  background-image: url("../images/pic.png");
  color: #d8d8d9;
}

#profile img {
  border: 6pt solid var(--primary);
  transition: .8s;
}

.profile-sub {
  background-color: rgba(0, 0, 0, .7);
  padding: 12pt;
  border-radius: 12pt;
}

dt {
  margin-top: 12pt;
}

.text {
  margin-right: 24pt;
  font-family: "Ubuntu", serif;
  font-weight: 400;
  font-style: normal;
  transition: .8s;
}

footer {
  display: flex;
  justify-content: space-between;
  transition: .8s;
  padding: 8pt;
  background-color: var(--menu-text-bg);
  border-radius: 12pt;
}

footer p {
  margin-left: 12pt;
  font-family: "Ubuntu", serif;
  font-weight: 400;
  font-style: normal;
  margin-top: 20pt;
}

#profile {
  border-bottom-right-radius: 0pt;
  border-bottom-left-radius: 0pt;
  margin-bottom: 0pt;
}

#skills {
  border-top-left-radius: 0pt;
  border-top-right-radius: 0pt;
}

@media only screen and (max-width: 740pt) {
  .container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  #skills {
    margin-bottom: 0pt;
  }
  .footer {
    display: block;
    text-align: center;
  }
  .footer p {
    margin: 0pt;
    margin-top: 12pt;
  }
  .social-icons {
    margin: 0pt;
    margin-top: 6pt;
  }
}
