/* general syle  */
body {
    font-family: monospace;
    margin: 0;
}

h1 {
    font-size: 48px;
    font-weight: bolder;
}
h2 {
    font-size: 42px;
    text-align: center;
}
h3 {
    font-size: 32px;
}
p {
    font-size: 18px;
}
/* header */
header {
    font-size: 18px;
    color: #f9faf8;
    background-color: #1f2937;
    padding-bottom: 100px;
}

.navbar {
    display: flex;
    padding: 30px;
    justify-content: flex-end;
    margin-bottom: 0;
    list-style: none;
    
}
.logo {
    margin-right: auto;
}
.nav {
    font-size: 18px;
    margin: 0 20px;
    text-transform: capitalize;
}
.hero {
    display: flex;
    justify-content: space-around;
}
.heroimg {
  
    max-width: 100%;
    height: auto;
}
    
.herobutton {
    background-color: #3882f6;
    color:#f9faf8;
    text-transform: capitalize;
    font-size: 24px;
    padding: 5px 10px;
    border-radius: 7px;
    border: none;
}
.herobutton:hover {
    transform: scale(1.1);
}
.info {
    display: flex;
    list-style: none;
    justify-content: space-evenly;
    width: auto;
}
.cont {
    display: flex;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    flex-direction: column;
    text-align: center;
    justify-content: center;
    max-width: 25%;
    
}
.box {
    border: 5px solid #3882f6;
    margin: 10px;
    
}
.quote {
    text-align: center;
    background-color: #e5e7eb;
    font-size: 36px;
    font-weight: lighter;
    font-style: italic;
    padding: 100px;
}
.pquote {
    font-weight: bold;
    text-align: end;
    text-transform: capitalize;
}
.cta {
    display: flex;
    justify-content: center;
  
    background-color: hsl(217, 91%, 59%);
    color: #e5e7eb;
    padding: 20px;
}

.ctabutton {
    background-color: #3882f6;
    color: #E5e7eb ;
    border: 3px  solid bisque;
    width: 13%;
    height: 5%;
    font-size: 22px;
    border-radius: 7px;
    margin: 5%;
}
.ctabutton:hover {
    transform: scale(1.1);
}
footer {
    background-color: #1f2937;
    color: beige;
    text-align: center;
    padding: 5px;
}
