@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Mozilla+Text:wght@200..700&display=swap');
html {
    scroll-behavior: smooth;
    width: 100vw;
}
* {
  font-family: "Mozilla Text", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.white_div {
    max-width: 500px;
    height: 500px;
    margin-left: 50px;
    background-color: #F9FAF8;
    color: rgba(93, 92, 92, 0.966);
    border: 3px solid grey;
    border-radius: 75px;
    padding: 20px;
}
html, body {
  width: 100%;
  overflow-x: hidden;
}
.white_div p{
    font-size: 25px;
}
.white_div h1 {
    color:black;
    font-size: 40px;
}
.white_div span {
    color:rgb(111, 221, 221);
    font-size: 60px;
}
.background {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100vw;
    height: 700px;
    background:
      linear-gradient(to right, #1F2937 0%, #1F2937 40%, transparent 80%, transparent 100%),
    url('Anaheim.jpg') right center / 60% auto no-repeat;
}
header {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 5px;
    box-sizing: border-box;
    height: 70px;
    width: 100vw;
    background-color: #F9FAF8;
    padding-left: 50px;
    padding-right: 50px;
}
.left{ 
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    box-sizing: border-box;
    box-sizing: border-box;
    margin-top: -10px;
}
header .left a {
    color: black;
    text-decoration: none;
    font-size: 25px;
}
.text {
    background-color: #F9FAF8;
    color: black;
    padding: 15px;
    text-align: center;
    font-size: 20px;
}
.text h1 {
    font-size: 60px;
    margin-top: 20px;
    margin-bottom: 20px;
}
.containers {
    width: 400px;
    border: 3px solid grey;
    padding: 20px;
    border-radius: 50px;
    margin-bottom: 20px;
    font-size: 20px;
    box-sizing: border-box;
}
.containers img {
    width: 240px;
    height: 300px;
}
.three img {
    height: 240px;
    width: 300px;
}
.acheivements {
    display: flex;
    flex-direction: row;
    align-self: center;
    justify-content: space-around;
    width: 100vw;
    margin: 0 auto;
}
ul {
    list-style-type: none;
}
li { 
    font-size: 40px;
    padding: 10px;
    background-color: #F9FAF8;
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
    border-bottom: 3px solid grey;
}
li:hover {
    background-color: rgb(231, 231, 231);
    cursor: pointer;
}
li:last-child {
    border-bottom: none;
}
li img {
    width: 100px;
    height: 100px;
    border-radius: 9999px;
    margin-left: 10px;
}
ul {
    width: 90vw;
    list-style-type: none;
    margin: 0 auto;
    padding: 0;
}
.projects div {
    width: 40%;
    border: 3px solid grey;
    padding: 5px;
    border-radius: 50px;
}
.projects {
    display: flex;
    align-items: center;
    justify-content: space-around;
    background-color: #F9FAF8;
}
.future img, .health img {
    height: 200px;
    width: 200px;
    border-radius: 9999px;
    border: 2px solid grey;
}
.projects a {
    text-decoration: none;
    color: blue;
}
.projects a:hover {
    text-decoration: underline;
}
.background, .text, header, .acheivements, footer {
  width: 100%;
}
.padding {
    padding: 10px;
    font-size: 20px;
}
.projects div {
    padding: 15px;
}
footer {
    padding: 20px;
    width: 100%;
    background-color:#1F2937;
    color: #F9FAF8;
    text-align: center;
}
footer h1 {
    font-size: 60px;
    margin-bottom: 20px;
}
@media only screen and (max-width: 600px) {
  .background {
    display: flex;
    background-color: #1F2937;
    justify-content: center;
    width: 100vw;
    background-image: none;
  }
  li {
      font-size: 30px;
  }
  .text h1 {
      font-size: 50px;
  }
  header {
    justify-content: center;
  }
  .white_div {
    margin-left: auto;
    margin-right: auto;
    width: 90%;
    margin: 0 auto;
  }
  .containers {
    width: 100%;
    margin-bottom: 20px;
  }
  .acheivements {
    width: 95%;
    flex-direction: column;
  }
  .projects {
    flex-direction: column;
  }
  .projects div {
    width: 95%;
    margin-bottom: 15px;
  }
}