html{
    background-image: linear-gradient(#FC5E55, #fa4083);
}
body{
    background-image: url("images/image-lion-background.png");
    background-repeat: no-repeat;
    background-position: top center;
    font-family: 'Roboto', sans-serif;
    color: white; 
    font-size: 1.25rem;
}
a{
    color: white;
    text-decoration: none;
}

.container {
    width: 1024px;
   min-height: 300px;
   margin-left: auto;
   margin-right: auto;
}
header{
    min-height: 100px;
    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;
    padding-top: 50px;
}
.cards{
    display: flex;
    justify-content: space-between;
    text-align: center;
}
.card1{
    background-image: url("images/image-background-card1.jpg");
    background-size: cover;
    background-position: bottom;
    min-height: 250px;
    width: 30%;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.228);
}
 .card2{
    background-image: url("images/image-background-card2.jpg"); 
    background-size: cover;
    background-position: bottom;
    min-height: 250px;
    width: 30%;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.228);
}
.card3{
    background-image: url("images/image-background-card3.jpg"); 
    background-size: cover;
    background-position: bottom;
    min-height: 250px;
    width: 30%;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.228);
}
.card1, .card2, .card3{
    box-sizing: border-box;
}
.herobox1{
    flex: 2;
    padding-right: 100px;
}
.herobox2{
    flex: 1;
}
h1{
    font-size: 3.25rem;
    font-family: 'playfair display', serif;
    margin-bottom: 1rem;
    text-shadow: 0px 2px 2px rgba(0, 0, 0, 0.228);
}
h2{
    font-size: 2rem;
    font-family: 'playfair display', serif; 
    margin-top: 20px;
}
p{
    line-height: 1.75rem;
    margin-bottom: 0.5rem;
}
.cards p{
    font-size: 0.85rem;
    line-height: 1.2rem;  
    margin: 10px 30px 20px 30px;
}
.cards a{
    color: white;
    text-decoration: none;
}
.mybutton{
    background-color: white;
    color: #fa4083;
    font-family: 'playfair display', serif;
    padding: 11px 25px;
    border-radius: 2px;
}
.mybutton:hover{
    background-color: rgb(29, 213, 103);
    transition-duration: 1s;
}
a.mybutton{
    display: inline-block;
    margin-top: 10px;
    margin-bottom: 10px;
}
nav a.mybutton{
    margin-left: 30px;
}
.navbutton{
    border-style: solid;
    border-width: 1px;
    padding: 11px 25px; 
    font-family: 'playfair display', serif;
    display: inline-block;
    position: relative;
}
.testimonials{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 100px;
}
.tbox{
    width: 47%;
    padding: 50px;
    border: 1px solid white;
    box-sizing: border-box;
    margin-top: 50px;
}
.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: #fa4083;
    
}
.inputwrapper{
    margin-bottom: 30px;
}
input[type="text"], input[type="email"], textarea{
    padding: 12px 20px;
    width: 100%;
    font-family:  'Roboto', sans-serif;
    font-size: .85rem;
    box-sizing: border-box;
}
.newline {
display: block;
margin-bottom: 10px;
}
.margin-right-a{
    margin-right: 20px;
}
input[type="radio"]{
    margin-right: 10px;
}
form{
    margin: 40px 0;
}