@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

body{
    padding: 0;
    margin: 0;
    font-family: "Open Sans", sans-serif;
}
.home{
    background: url(../assets/image/bg-1.jpg);
    background-position: top center;
    background-size: cover;
    min-height: 100vh;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}
.flex-box{
    text-align: center;
}
.flex-box h3{
    font-weight: 600;
    font-size: 20px;
}
.flex-box h3 span{
    display: inline-block;
    width: auto;
    height: 15px;
    background-color: #B2C844;
    padding: 0 2px;
    margin: 0 5px;
}
.flex-box h1{
    margin: 0;
    font-family: 600;
    font-size: 46px;
}
.flex-box h2{
    margin:1.5rem 0 1rem;
    font-family: 600;
    font-size: 30px;
}
.btn{
    text-decoration: none;
    color: #fff;
    background: linear-gradient(90deg,rgba(178, 200, 68, 1) 0%, rgba(233, 168, 61, 1) 50%, rgba(87, 138, 194, 1) 100%);
    padding: 15px 25px;
    display: inline-block;
    margin-top: 1rem;
    border-radius: 10px;
    text-transform: capitalize;
    transition: all 0.3s ease-in-out;
}
.btn:hover{
    letter-spacing: 1px;
}