#home-page{
    margin: 10px;
    display: flex;
    flex-direction: column;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}
.home-item {
    border-radius: 50px;
    margin-top: 12px;
    height: 90vh;
}
#item-1{
    display: flex;
    flex-direction: row;
    background: linear-gradient(rgb(189, 225, 172),rgba(146, 184, 221));
    margin-top: 0px;
    align-items: center;
}
#item-1-text{
    text-align: center;
    font-size: 50px;
    color: black;
    margin-left:20px;
}
#item-1-image{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 100px;
}
#item-1-image img{
    max-width: 150%;
    aspect-ratio: 1;
}
h1 {
    font-size: 50px;
}
h2{
    margin-top: 0px;
    margin-bottom: 0px;
}
#item-2{
    background-image: url("../images/vision.png");
    background-position-x: center;
    background-position-y: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

#item-2 b{
    background-color: rgba(255, 255, 255,0.7);
    padding-left: 15%;
    padding-right: 15%;
}
#vision-title h2{
    margin-top: 1em;
    font-size: 45px;
    color: rgb(89, 125, 72);
    text-decoration: underline;
}
#vision-text{
    font-size: 35px;
    color: rgb(89, 125, 72);
}

#item-3{
    background-image: url(../images/mission.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    display: flex;
    flex-direction: column;
    text-align: center;
    justify-content: center;
    padding-left: 10%;
    padding-right: 10%;
}
#mission-title{
    color: rgba(46, 84, 121);
    margin-bottom: 0px;
}
#mission-title h2{
    font-size: 45px;
}
#mission-text{
    margin-top: 20px;
    padding-bottom: 200px;
    font-size: 35px;
    color: rgba(46, 84, 121);
}

#item-4{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 12px;
}
.preview-item{
    width: 250px;
    height: 30%;
    border: black;
    border-style: solid;
    border-width: 1px;
    border-radius: 50px;
    text-align: center;
    background-color: rgba(159, 189, 129);
    background: linear-gradient(rgba(166, 204, 221),rgba(159, 189, 129));
    margin-right: 12px;
    margin-bottom: 5px;
}

.learn-more{
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 20px;
    padding-right: 20px;
    border-radius: 20px;

    margin-bottom: 5px;

    background-color:rgba(166, 204, 221);
    border-style: solid;
    cursor: pointer;
}
.preview-title{
    font-size: 30px;
    padding: 0px;
    margin: 15px;
}
hr{
    color: black;
    border-color: black;
    border-style: solid;
}

