body{
    font-family: roboto, cambria;
    height: 100vh;
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 0;
}

a{
    text-decoration: none;
    color: inherit;
}

.header, .about{
    background-color: #1F2937;
    display: flex;
}


.header{
    justify-content: space-around;
    align-items: center;
    padding: 0px 20px;
}

.menu{
    list-style: none;
    display: flex;
    justify-content: space-around;
    gap: 20px;
    padding: 0px 0px;
}

.menu a, .about #des{
    text-decoration: none;
    font-size: 18px;
    color: #E5E7EB;
}

.logo, #aboutsection h1{
    color: #F9FAF8;
}

.logo{
    font-size: 24px;
    font-weight: 400;
}

#aboutsection h1{
    font-size: 48px;
    font-weight: 900;
    margin: 0;
}

.about{
    justify-content: center;
    gap: 20px;
    padding: 100px;
}

#aboutsection{
    max-width: 350px;
    flex: 0 1 auto;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 2px;
}

.signupbtn{
    background-color: #3882F6;
    padding: 5px 20px;
    border-radius: 5px;
    color: #F9FAF8;
    border-style: none;
}

.about img{
    height: 250px;
    width: auto;
    border-radius: 5px;
    flex: 0 0 auto;
}

.mainimg{
    display: flex;
    flex-direction: column;
    align-items: center;
}


.caption{
    font-size: 14px;
    color: inherit;
    opacity: 40%;
    margin-bottom: 2px;
}

.gallery h1{
    text-align: center;
    margin: 20px;
    margin-bottom: 30px;
}

.gallery{
    margin: 20px 0 130px 0;
}

.galleryctnr{
    display: flex;
    justify-content: center;
    gap: 20px;
    align-items: center;
    padding: 0 50px;
    flex: 1 1 auto;
    flex-wrap: wrap;
    margin: auto;
    min-height: 400px;
    width: auto;
    
}

.galleryctnr img{
    width: 200px;
    height: 200px;
    border-radius: 5px;
    border: 3px solid #3882F6;
    box-shadow: 0px 2px 2px 0px black;
    object-fit: cover;
}

.example p{
    flex: 1 0 auto
}

.example{
    max-width: 250px;
    min-width: auto;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    text-align: center;
    gap: 5px;
    flex: 1 1 auto;
}

.example p{
    margin: 0;
    flex: 0 1 auto;
}

.example .caption{
    font-size: 10px;
    flex-shrink: 3;
}

.vision{
    background-color: #E5E7EB;
    text-align: center;
    padding: 120px;
    font-size: 36px;
    font-weight: 300px;
    color: #1F2937;
}

.vision p{
    font-style: italic;
    font-weight: 300;
}

.quoter{
    text-align: right;
}

.call-to-action{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 150px 0px;
}

.callbar{
    background-color: #3882F6;
    color: #F9FAF8;
    width: 90%;
    display: flex;
    justify-content: space-around;
    gap: 120px;
    border-radius: 8px;
    align-items: center;
    padding: 20px 0px;
}

.callbar h3{
    font-size: 25px;
}

.callbar button{
    max-width: 120px;
    border: 2px solid #F9FAF8;
    flex: 1 0 auto;
    font-size: 18px;
    font-weight: 700;
    border-radius: 8px;
}

.footer{
    background-color: #1F2937;
    text-align: center;
    padding: 40px;
    color: #E5E7EB;
}