body {
  font-family: 'Courier New', Courier, monospace, Verdana, Geneva, Tahoma, sans-serif;
  height: 100%;
  margin: 0;
  padding: 0;
  /* background-color: #F6EFE4; */
  background-image: url("noise.png");
  font-size: large;
}

.flex-container {
  display:flex;
  flex-direction: column;
  min-height: 100vh;
  justify-content: space-between;
}

.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
}

.title {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.title h1{
  font-size: large;
  font-weight: bold;
}

.title_icon img{
  height: 50px;
  padding: 10px;
}

.navigation-links {
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: space-around;
  gap: 50px;
}

.navigation-links li {
  margin-right: 10px;
}

.navigation-links a {
  text-decoration: none;
  color: #333;
  font-weight: bold;
}

h2 {
  text-align: center;
  font-weight: normal;
}

.content {
  margin: 10px;
  padding-bottom: 20px;
}

.about {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 50px;
  padding: 150px
}

.about-picture img {
  border-radius: 8%;
  height: 600px;
}

.about-text {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
}

.about-text p {
  align-self: center;
  margin: 5px;
}

.education {
  padding: 0;
}

.education li {
  padding-bottom: 10px;
}

.bottom-bar {
  text-align: center;
  font-size: xx-small;
}

.contact {
  padding: 150px;
}

.contact div {
  padding: 20px;
  text-align: center;
}

.contact a {
  text-decoration: none;
  color: black;
}

.mobile-break {
  display: none;
}

@media only screen and (max-width: 600px) {
  body{
    background-size: 150%;
    font-size: medium;
  }

  .title{
    margin: 10px;
    font-size:larger;
  }

  .top-bar{
    display: flex;
    flex-direction: column;
  }

  .navigation-links{
    margin: 20px;
    display:flex;
    gap: 10px;
    /* text-transform: uppercase; */
  }

  .about {
    flex-direction: column;
    align-items: center;
    padding: 10px;
  }

  .about-picture img {
    border-radius: 8%;
    height: revert;
    width: 350px;
  }

  .bottom-bar{
    font-size:xx-small;
  }

  .contact {
    padding: 10px;
  }

  .mobile-break {
    display: inline;
  }

}

li {
  list-style-type: none;
}

.sublist{
  list-style-type:none;
}