@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Merriweather:ital,wght@0,300;0,400;0,700;0,900;1,300;1,400;1,700;1,900&display=swap");

/* font-family: "Lato", serif;
font-family: "Merriweather", serif; */

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  background-color: #f5f5f5;
  font-family: "Lato", serif;
  height: 100vh;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Merriweather", serif;
  color: #2d2d2d;
}

a{
    text-decoration: none;
}

p{
    font-size:  clamp(1rem, 1vw + 0.75rem, 1.25rem);
}
a:hover{
    color: #acacac;
    text-decoration: underline;
    transition: 500ms ease-in-out;
}

img{
    max-width: 100%;
    height: auto;
    vertical-align: middle;
    font-style: italic;
    background-repeat: no-repeat;
    background-size: cover;
    shape-margin: 0.75rem;
}

.img-box{
    padding-top: 1.2rem;
    display: flex;
    justify-content: center;
}

.img-box img{
    width: 50%;
}
.header{
    background-color: rgb(235, 215, 255);
    padding: 1.2rem;
}
h1{

    margin-top: 0;
    font-size:  clamp(1.6rem, 4vw + 1.5rem, 3rem);
    text-align: center;
}

.container{
    padding: 0 2rem;
}

.info-box{
    padding-top: 3rem;
    padding-bottom: 3rem;
    text-align: center;
}
.footer{
    padding-top: .8rem;
    text-align: center;
}