html {
    background-image: linear-gradient(147deg, #e49d33c2 0%, #ff2525be 74%);
}

body {
    background-image: url(Images/image-lion-background.png);
    background-repeat: no-repeat;
    background-position: top center;
    font-family: Arial, Helvetica, sans-serif;
    color: white;
    font-family: "Roboto", serif;
    font-weight: 400;
    font-style: normal;
    background-size: cover;
}

a {
    color: white;
    text-decoration: none;
}

.container {
    width: 1024px;
    min-height: 300px;
    margin-left: auto;
    margin-right: auto;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid lightgray;
}

main {
    min-height: 300px;
    display: flex;
    align-items: center;
}

.main2{
    min-height: 300px;
}

.cards {
    display: flex;
    justify-content: space-around;
    text-align: center;
}

.card1 {
    background-image: url(Images/image-background-card1.jpg);
    background-position: bottom;
    background-size: cover;
    width: 30%;
    min-height: 250px;
    box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.151);
}

.card2 {
    background-image: url(Images/image-background-card2.jpg);
    background-position: bottom;
    background-size: cover;
    width: 30%;
    min-height: 250px;
    box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.151);
}

.card3 {
    background-image: url(Images/image-background-card3.jpg);
    background-position: bottom;
    background-size: cover;
    width: 30%;
    min-height: 250px;
    box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.151);
}

.herobox1 {
    width: 50%;
    flex: 2;
    margin-bottom: 50px;
}

.herobox2 {
    width: 50%;
    flex: 1;
}

h1 {
    font-size: 80px;
    color: white;
    font-family: "Playfair", serif;
    font-weight: 400;
    font-style: normal;
}

h2 {
    font-size: 2rem;
    color: white;
    font-family: "Playfair", serif;
    font-weight: 400;
    font-style: normal;
    margin-top: 20px;
}

p {
    line-height: 20px;
    margin-bottom: 20px;
    margin-top: 20px;
}

.cards p {
    font-size: 0.85rem;
    line-height: 1.2rem;
    margin: 10px;
}

i {
    font-size: 100px;
}

.cards a {
    color: white;
    text-decoration: none;
}

.card1,
.card2,
.card3 {
    padding: 30px 30px 20px 30px;
    box-sizing: border-box;
}

.button1 {
    background-color: white;
    color: rgb(184, 184, 55);
    font-family: "Playfair", serif;
    padding: 11px 25px;
    box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.151);
}

a .button {
    display: inline-block;
    margin-top: 30px;
}

nav a.button {
    font-family: "Playfair", serif;
    padding: 11px 25px;
    box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.151);
    border: 3px solid white;
    background-color: none;
    color: white;
}

.navbutton {
    border: 1px solid white;
    padding: 11px 25px;
    font-family: "Playfair", serif;
    display: inline-block;
    position: relative;
}

.testimonials {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.tbox {
    width: 47%;
    padding: 50px;
    border: 2px solid white;
    box-sizing: border-box;
    margin-top: 50px;
}

.button1:hover {
    background-color: beige;
}

.tbox p:last-of-type {
    font-size: 0.8rem;
    padding-left: 30px;
}

.dropdown {
    display: none;
    position: absolute;
    z-index: 1;
    padding-top: 20px;
    text-align: center;
}

.navbutton:hover .dropdown {
    display: block;
}

.dropdown .navbutton {
    width: 120px;
    background-color: white;
}

.dropdown .navbutton a {
    color: orange;
}