html{
  box-sizing: border-box;
}

body {
  height: 100%;
  width: 100%;
  margin: 0;
  font-family: Georgia, serif;
  background-color: black;
}

/* navbar container */
.menu{
  display: flex;
  flex-flow: row;
  justify-content: center;
  list-style: none;
  padding: 10px 0;
  margin: 30px 30px;
  border-right: 3px solid rgb(223, 38, 115);
  border-left: 3px solid rgb(223, 38, 115);
}

.menu li {
  margin: 0 auto;
}

/* navbar items */

.menu a{
  text-decoration: none;
  display: block;
  color: white;
  font-size: larger;
  padding: 1em;
  text-transform: uppercase;
  text-align: center;
}

/* navbar mouse-over effect */
.menu a:hover{
  color: rgb(223, 38, 115);
  font-weight: bold;
}

/* Container holding the name, goal in AltSchool and Profile picture. */
.intro-container{
  display: flex;
  flex-direction: row;
  width: 90%;
  gap: 50px;
  flex: 1;
  margin: 0px auto;
  padding-bottom: 40px;
}

.intro{
  flex-basis: 50%;
  height: 500px;
  padding: 30px;
  line-height: 2em;
  box-sizing: border-box;
  text-align: center;
  padding-bottom: 0px 40px;
}

.goals, 
footer{
  color: white;
}

.intro-2{
  width: 50%;
  height: 500px;
  padding: 30px;
  box-sizing: border-box;
}

.intro-2 img{
  width: auto;
  height: 100%;
  border-radius: 50%;
}

.paragraph-intro{
  color: white;
  font-size: 30px;
  line-height: 1.4em;
  padding-bottom: 0px 40px;
}

.my-name{
  color: rgb(223, 38, 115);
}

#contact-subheading,
.page-subheading{
  color: rgb(223, 38, 115);
  text-align: center;
  letter-spacing: 2px;
  font-size: 18px;
  padding: 10px;
}

::placeholder{
  font-family: Georgia, serif;
  color: black;
  font-size: 16px;
  letter-spacing: 0.2px;
}

.navigation-link{
  display: flex;
  justify-content: flex-end;
  width: 100%;
}

.navigation-link a{
  color: rgb(223, 38, 115);
  font-weight: bold;
  text-decoration: none;
  margin: 20px;
  font-size: 0.7rem;
}

.site-footer {
  padding: 30px 20px;
  text-align: center;
  color: white;
  background-color: #111;
}

.site-footer .footer-content {
  max-width: 900px;
  margin: 0 auto;
}

.site-footer p {
  margin: 10px auto;
  max-width: 720px;
  line-height: 1.7;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin: 20px 0;
}

.footer-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgb(223, 38, 115);
  text-decoration: none;
  font-weight: bold;
}

.footer-links svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
  display: block;
}

.footer-links a:hover {
  opacity: 0.8;
}

/* Responsive Design for smaller screens */
@media (max-width: 768px) {
  .menu {
    flex-direction: column;
    margin: 10px;
    padding: 5px 0;
  }

  .menu li {
    margin: 5px 0;
  }

  .menu a {
    font-size: medium;
    padding: 0.5em;
  }

  .intro-container {
    flex-direction: column;
    width: 95%;
  }

  .intro {
    flex-basis: auto;
    height: auto;
    padding: 20px;
  }

  .intro-2 {
    width: 100%;
    height: auto;
    padding: 20px;
  }

  .intro-2 img {
    width: 100%;
    height: auto;
    max-width: 300px;
  }

  .paragraph-intro {
    font-size: 24px;
  }

  .navigation-link {
    justify-content: center;
  }

  .navigation-link a {
    margin: 10px;
  }

  .footer-links {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .footer-links a {
    width: 100%;
    max-width: 320px;
    justify-content: center;
    padding: 12px 16px;
    border: 1px solid rgb(223, 38, 115);
    border-radius: 8px;
  }
}