*{margin: 0; padding: 0; outline: 0;}
:root{
    --bg1: linear-gradient(to top right, #CAADF8 25%, #F9C2EF 71%);
    --bg2: linear-gradient(to right, #965CF2 0%, #FF8ADC 100%);
}


body{
        font-family: "Roboto";
        background: url("../images/backcover.svg") no-repeat;
        background-size: 60%;
        background-position: right;
}
nav{
    width: 80%;
    margin:0 auto;
    align-items: center;
    justify-content: space-between;
    display: flex;
    font-size: 1rem;
    font-weight: 800;
    padding: 1.5rem 0;
}
nav > img{
    width: 50px;
    flex: 0.1;
}
.nav-items{
    flex: 0.4;
    display: flex;
    justify-content: space-evenly;
    cursor: pointer;
}
.nav-item:hover{
    color: #965CF2;
    font-weight: 800;
}
.signin-btn{
    flex: 0.1;
    padding: 8px 2px;
    border: none;
    color: #fff;
    background: linear-gradient(90deg,#6e35ca, #f082cf);
    border-radius: 20px;
    cursor: pointer;
}
.signin-btn:hover{
    box-shadow: 2px 2px 2px #000;
    padding: 10px 3px;
    transition: 0.25s ease-in-out;
}


.intro-section{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
.left-section{
   width: 30%;
   display: flex;
   flex-direction: column;
   justify-content: center;
   padding: 0 2rem;
   color: #fff;
   padding-left: 8rem;
}
.imgs-div{
    width: 60%;
    position: relative;
    margin-right: 7rem
}
.imgs-div img:first-of-type{
    position: absolute;
    width: 15%;
    bottom: 1rem;
    left: 15rem;
}
.imgs-div img:nth-child(2){
    position: absolute;
    width: 5%;
    bottom: 8rem;
    left: 19rem;
}
.imgs-div img:nth-child(3){
    width: 60%;
    margin-left: 40%;
    object-fit: cover;
}
h1{
    color: #3E4794;
    font-size: 3.5rem;
    font-weight: 900;
}
h4{
    color: #3E4794;
    font-size: 1rem;
    font-weight: 100;
    padding:2rem 0;
}
.learn-more-btn{
    padding: 10px 20px;
    border: none;
    border-radius: 15px;
    align-self: flex-start;
    background: var(--bg2);
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
}
.learn-more-btn:hover{
    box-shadow: 2px 2px 2px #000;
    padding: 11px 21px;
    transition: 0.2s ease-in-out;
}
@media (max-width:900px) {
    .intro-section{
        flex-direction: column-reverse;
    }
    body{
        background-size: cover;
    }
    .imgs-div{
        width: 100%;
        margin: 0;
    }
    .left-section{
        padding: 10% 0;
        width: 80%;
        margin: 0 auto;
    }
    .signin-btn{
        display: none;
    }
    .nav-items{
        display: none;
    }

    .imgs-div img:first-of-type{
       display: none;
    }
    .imgs-div img:nth-child(2){
       display: none;
    }
    .imgs-div img:nth-child(3){
        width: 80%;
        margin: 0 auto;
        margin-left: 2rem;
    }
    h1{
        font-size: 2.5rem;
    }
    h4{
        font-size: 0.7rem;
        padding: 0.8rem 0;
    }
}

