/* home-page css */
.home-page{
    /* display: none; */
    width: 100%;
    height: 100vh;
    text-align: center;
    background-image: url("../assets/images/bg2.gif");
    background-repeat: no-repeat;
    background-size: cover;
    color: white;
    text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
}

.home-page-top{
    margin-left: 10%;
    margin-right: 10%;
    padding-top: 5%;
}

.home-title{
    font-size: 40px;
}

.home-section{
    display:flex;
    margin-top: 10%;
    font-size: 30px;
}

.home-section-content{
    flex: 1;
    cursor: pointer;
}

.home-section-content img{
    border-radius: 10px;
}

.home-section-content:hover{
    transform: scale(1.2);   
}

.home-points-bottom{
    margin-top:10% ;
    font-size: 30px;
    display: flex;
}

.home-points-bottom-left{
    flex: 1;
    background-color: rgb(40, 40, 173);
    padding: 1%;
    margin-left: 10%;
    margin-right: 10%;
    border: 2px solid white;
    border-radius: 20px;
}

.home-points-bottom-center{
    flex: 1;
    cursor: pointer;
    height: 50px;
}

.home-points-bottom-center img{
    width: 100%;
    height: 100%;
}

.home-points-bottom-center img:hover{
    transform: scale(1.2);
}

.home-points-bottom-right{
    flex: 1;
    background-color: red;
    margin-left: 10%;
    margin-right: 10%;
    padding: 1%; 
    border: 2px solid white;
    border-radius: 20px;
}


