@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');


body {
    margin: 0;
    padding: 0;
    font-family: Roboto, 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
header {
    background-color:#1F2937 ;
    padding-bottom: 120px;
}

.nav {
    display: flex;
    justify-content: space-around;
    margin-bottom: 50px;
}

.nav ul {
    display: flex;
    gap: 15px;
}
.nav ul li {
    list-style: none;
}

.nav ul li a {
    text-decoration: none;
    color: white;
}

.header-cont {
    display: flex;
    justify-self: center;
}

.header-cont .text-1 {
width: 50%;
}

.header-cont button {
    background-color: #3882F6;
    color: white;
    border-radius: 10px;
    padding: 7px;
    padding-left: 30px;
    padding-right: 30px;
    font-size: 1rem;
    font-weight: bold;
}

h1 {
    font-size: 24px;
    color: #f9faf8;
}


.header-cont .text-1 strong {
    font-size: 48px;
    color: #F9FAF8;
    font-weight: 900;
}

.header-cont .text-1 p {
    font-size: 18px;
    color: #E5E7EB;
    opacity: 90%;
    
}

.gallery {
    display: flex;
    align-items: center;
    flex-direction: column;
    margin-top:30px;
    margin-bottom: 200px;
}

.gallery h2 {
    font-size: 36px;
    color: #1F2937;
    font-weight: 900;
}

.gallery-cont {
    margin-top:30px;
    display: flex;
    gap: 25px
}
.gallery .gallery-cont div{
   border: 1px solid  #3882F6;
   border-radius: 20px;
   width: 150px;
   height: 150px;
}

.gallery .gallery-cont p {
    text-align: center;
    opacity: 60%;
}

.quote {
    background-color: #E5E7EB;
    padding: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.quote-container {
    max-width: 800px;
    justify-self: center;
}

.quote #quote-message {
    font-size: 36px;
    color: #1F2937;
    Weight:300;
    opacity: 80%;
    font-style:italic;
    text-align: left;
}

.quote h3 {
    text-align: right;
}

.CTA {
    display: flex;
    margin-top: 100px;
    justify-content: center;
    align-items: center;
    margin-bottom: 100px;
}

.cta-box {
    background-color: #3882F6;
    border: 1px solid #3882F6;
    border-radius: 20px;
    min-width: 800px;
    min-height: 140px;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}

.cta-box .cta-text {
    color: white;
}

.cta-box .cta-text div {
    font-size: x-large;
    font-weight: bold;
    margin-bottom: -15px;
    margin-top: 15px;
}

.cta-box #cta-signup {
    background-color: #3882F6;
    color: white;
    border: 1px solid white;
    border-radius: 10px;
    padding: 7px;
    padding-left: 30px;
    padding-right: 30px;
    font-size: 1rem;
    font-weight: bold;
}

footer {
    background-color: #1F2937;
    min-height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

footer p {
    color: white;
    opacity: 80%;
}

