
:root{
    --color-background : #F0F4FF;
    --principal-blue-color:#2A344E;
    --principal-green-color: #A8CF45;
}


.banner-container{
    background-image: linear-gradient(120deg, #d4fc79 0%, #96e6a1 100%);
    display: grid;
    grid-template-columns: repeat(2,1fr);
    height: 100vh;
    overflow-x: hidden;
    overflow-y: hidden;

}

.banner-info{
    display: flex;
    flex-direction: column;
    margin: auto;
    padding: 1rem;
    width: 80%;
}

.banner-info h1{
    font-size: 44px;
}

.banner-info span{
    color: var(--color-background);
    text-shadow: -1px 2px 4px rgba(0,0,0,0.6);
}

.banner-info a{
    background-color: var(--principal-blue-color);
    padding: 1rem;
    border-radius: 10px;
    color: aliceblue;
    font-weight: 500;
    text-decoration: none;
    text-align: center;
    font-size: 20px;
    width: 50%;
}

.banner-img{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin: auto;
    transform: translateY(3rem);
    position: relative;
    
}

.banner-blob{
    width: 150%;
    position: absolute;
    animation: rotate 10s linear infinite alternate;
}

.banner-student{
    width: 120%;
    position: absolute;
    -webkit-filter: drop-shadow(2px 2px 2px rgb(59, 59, 59));
    filter: drop-shadow(2px 2px 2px rgb(45, 45, 45));
}

@keyframes rotate {
    0%{
        transform: rotate(360deg);
        transform: rotate3d(1, 1, 1, 45deg);
       
    }
    100%{
        transform: rotate(0deg);
        transform: rotate3d(1, 0, 1,90deg);
    }
    
  }

@media  (max-width:1400px) {
   
    .banner-info h1{
        font-size: 24px !important;
    }
    .banner-container{
        min-height: 750px;
    }
}

@media (max-width:992px) {

    .banner-container{
        grid-template-columns: 100%;
        /* grid-template-rows: 40% 60%; */
    }

    .banner-info h1{
        font-size: 24px;
    }

    .banner-info a{
        width: 90%;
    }

    .banner-container{
        min-height: 1020px;
    }
    
    
}

@media (max-width:992px) and (max-height: 1180px) {
    
    .banner-img{
        margin-top: 0rem;
        width: 80%;
    }
    .banner-container{
        min-height: 1020px;
    }
}

@media (max-height: 741px) and (max-width: 992px) {
    
    .banner-img{
        margin-top: -1rem;
        width: 60%;
    }
    .banner-container{
        min-height: 1020px;
    }
}

@media (max-height: 680px) and (max-width:992px ) {
    
    .banner-img{

        display: none;
    }
    .banner-container{
        min-height: 1020px;
    }
}