@import url("https://fonts.googleapis.com/css2?family=Bungee+Spice&family=Poppins:ital,wght@0,200;0,300;0,400;0,500;0,600;1,200;1,300;1,400;1,500&family=Rubik+Doodle+Shadow&display=swap");

@import url("https://fonts.googleapis.com/css2?family=Bungee+Spice&family=Oswald:wght@200;400;600;700&family=Poppins:ital,wght@0,200;0,300;0,400;0,500;0,600;1,200;1,300;1,400;1,500&family=Rubik+Doodle+Shadow&display=swap");

body {
    margin: 0;
  padding: 0;
  box-sizing: border-box;
  
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
h2,
h1 {
  font-weight: bold;
}
h3 {
  font-size: 1.8em;
}
h1,
h2,
h3 {
  font-family: "Bungee Spice", sans-serif;
  padding: 1em 0;
}
p {
  text-align: justify;
  font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande",
    "Lucida Sans", Arial, sans-serif;
}

.container {
    background-color: #d9afd9;
  background-image: -webkit-linear-gradient(0deg, #d9afd9 0%, #97d9e1 100%);
  background-image: -moz-linear-gradient(0deg, #d9afd9 0%, #97d9e1 100%);
  background-image: -o-linear-gradient(0deg, #d9afd9 0%, #97d9e1 100%);
  background-image: linear-gradient(0deg, #d9afd9 0%, #97d9e1 100%)

  height: 100vh;
  border: 10px solid #1d1e4c;
}

.content {
     width: 80vw;
    margin: 0 auto;
}
.top_section {
    
  margin-top: 8em;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.top_section h1 {
  font-size: 50px;
  font-weight: bold;
  color: #1d1e4c;
  text-transform: uppercase;
}
.top_section h4 {
  font-size: 1.5em;
  text-align: end;
}

.image_container {
    
  border-radius: 50%;
 
}

img{
  width: 15em;
  height: 18em;
  border-radius: 50%;
  border:4px solid violet;
}
.about_section {
  margin-top: 50px;
}
.about_section h2 {
  font-size: 70px;
  font-weight: 400;
  margin-bottom: 20px;
}
.about_section p {
  font-size: 20px;
  line-height: 30px;
  letter-spacing: 1.2px;
  text-align: justify;
}
.biography_section {
  margin: 50px 0;
}
.biography_section h3 {
  margin-bottom: 20px;
}
.biography_section ul {
  margin-left: 50px;
}
.biography_section li {
  margin-bottom: 15px;
  font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande",
  "Lucida Sans", Arial, sans-serif;
  font-weight: bold;
}

footer {
  margin: 50px 0;
}
footer p {
  text-align: end;
}

.main_heading{
    font-weight: bold;
    margin-left: 1.7em;
    font-size: 3em;
    text-shadow: 3px 3px 5px rgb(255, 255, 255);
   
    font-family: "Bungee Spice", sans-serif;
}

@media only screen and (max-width : 720px) {
  img{
    width: 9em;
    height: 13em;
    border-radius: 45%;
    border:4px solid violet;        
    transition:ease-in-out width 1s, height 1s;
    
  }
  
  .main_heading{
    text-align: right;
      font-weight: bold;
      margin-left: 1.7em; 
      font-size: 1.5em;
      text-shadow: 3px 3px 5px rgb(255, 255, 255);
  text-align: end;
     
      font-family: "Bungee Spice", sans-serif;
  }


    
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(0deg, rgb(129, 1, 157) 0%, rgb(197, 146, 197) 100%);
    border-radius: 100px;
  }

  ::-webkit-scrollbar {
    background-color: transparent;
    width: 10px;
  }
  .link{
    transition: width 2s, height 4s;
}

.link:hover{
    
    font-size: 1.1em;
    background-color: rgb(145, 145, 223);
    transition: width 2s, height 4s;
    
  }