
@import url('https://fonts.googleapis.com/css2?family=PT+Serif:ital,wght@1,400;1,700&display=swap');


html {
    scroll-behavior: smooth;
  }
  
  body{
    background-color: pink;
    color: rgb(119, 40, 53);
    overflow-x: hidden;
  }

h1{
    text-align: center;
    font-size: 4vmax;
    color: white;
    font-family: 'PT Serif', serif;
  }

h2{
    text-align: left;
    margin-bottom: 0%;
    font-size: 2vmax;
    color: #80244f;
    font-family: 'PT Serif', serif;
  }

h3{
  text-align: left;
  margin-bottom: 0%;
  font-size: 2vmax;
  color: #80244f;
  font-family: 'PT Serif', serif;  
}

h4{
  text-align: left;
  margin-bottom: 0%;
  font-size: 2vmax;
  color: #80244f;
  font-family: 'PT Serif', serif;  
}


p{
    text-align: left;
    font-size: large;
    color: #80244f;
    font-family: 'PT Serif', serif;
  }

#navbar{
  background-color: #80244f;
  border-style: solid;
  border-color: #f1e5eb;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: space-around;
  position:sticky;
  top: 0vh;
  width: 100vmax;
  height: 11vmax;
  }


  button {
    width: 10vmax;
    height: 2.8vmax;
    font-size: 1.8vmax;
    cursor: pointer;
    border: none;
    outline: none;
    background: transparent;
    color: white;
    font-family: 'PT Serif', serif;
    font-weight: 700;
    position: relative;
    transition: all 0.5s;
    z-index: 1;
   }
   
   button::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background-color: white;
    z-index: -1;
    transition: all 0.5s;
   }
   
   button:hover::before {
    width: 100%;
   }
   
   button:hover {
    color: #80244f;
   }
   
   button:active:before {
    background: #f8cdcd;
   }

  main{
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    }

#texto{
  margin-left: 5%;
  font-size: large;
  display: flex;
  flex-direction: column;
  justify-content: left;
  }

.img{
  margin-right: 5%;
  flex-wrap: wrap;
  position:static;
  flex-direction: row;
  justify-content: right;

  height: auto;
  width: 30vmax;
  
  }

.footer{
  display: flex;
  flex-direction: row-reverse;
  flex-wrap: wrap-reverse;
  justify-content: flex-start;
  text-align: right;
  position: fixed;
  bottom: 0vh;
  background-color: #80244f;
  border-style: solid;
  border-color: #f1e5eb;
  width: 100%;
  }

  .footer p{
    color: white;
    font-size: 1.5vmax;
    font-size: italic;
    margin-right: 5vw;
  }
  