* {
    margin: 0;
    padding: 0;
    font-family: 'Titillium Web', sans-serif;
}
a {
    text-decoration: none;
    color:white ;
}
body {
    margin-left: 5%;
    margin-right: 5%;
    background-color: #f2e0d2;
}
header > img {
    padding-top: 2%;
    margin-bottom: 2rem;
    width: 150px;
    max-width: 100%;
    display: block;
    margin-left: auto;
    margin-right: auto;
}
header ul {
    list-style: none;
    padding-top: 1rem;
    padding-bottom: 1rem;
    text-align: center;
    background-color: #d0604c;
    color: #fff;
}
header li {
    display: inline-block;
    padding: 0 5px;
}
#banner {
    margin-top: 3rem;
    margin-bottom: 3rem;
    background-image: url(/imgs/Home-Hero.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center bottom;
}
#banner-cont {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-wrap: wrap;
    align-items: start;
    background-color: #4e3328a1;;
    padding: 3rem 3rem;
    min-height: 17rem;
    width: calc(100% - 6rem);
    height: 100%;
}
#banner-cont > h1 {
    font-size: 3rem;
    text-shadow: 4px 0px 0px #fff;
    color: #d0604c;
    letter-spacing: 3px;
}
#banner-cont > p {
    color: #fff;
    max-width: 600px;
    font-size: 1rem;
    margin-bottom: 1rem;
}
#banner-cont > button {
    background-color: #d0604c;
    color: #fff;
    padding: 0.5rem 2rem;
    font-weight: 700;
    border: none;
}
#banner-cont > button:hover {
    background-color: black;
    scale: 1.2;
    transition: 1s;
}
#banner-cont > button:not(hover) {
    transition: 1s;
}
#info-boxs {
    margin-bottom: 3rem;
    display: flex;
    flex-wrap: wrap;
    column-gap: 20px;
}
#info-boxs > article {
    flex-basis: calc(32% - 4rem);
    flex-wrap: wrap;
    background-color: #fff;
    padding: 1.5rem 2rem;
}
#info-boxs img {
    max-width: 100%;
    height: 200px;
    aspect-ratio: 1;
    object-fit: cover;
    border: 3px solid #d0604c;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    margin-bottom: 2rem;
}
footer {
    display: flex;
    padding: 1rem 2rem;
    background-color: #4e3328;
    color: #fff;
    justify-content: center;
}
footer > div {
    flex-basis: 50%;
}
footer img {
    max-width: 100%;
    width: 150px;
}