/* Removeing style added by browser */

*{
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', 'sans-serif';
}

/* Designing Navbar */
.navbar{
    display: flex;
    align-items: center;
    justify-content: space-around;
    background-color: #000;
    padding: 15px;
}

.navbar .grow-list .list .list-item{
    font-size: .9em;
    list-style: none;
    display: inline-block;
    padding: 10px 20px;
    font-weight: 500;
    color: #fff;
}

/* Createing an aroow besides the first nav element */
.navbar .grow-list .list .list-item:first-child::after{
    content: "\02C5";
    position: absolute;
    top: 5.2%;
    left: 29.5%;

}

/* Designing the line and logo in nav bar */
.navbar .line{
    width: 1px;
    height: 45px;
    background-color: white;
    margin: 0px -160px 0px -150px;
}

.navbar div img {
    width: 80px;
}

/* Adding Styles which are simlar to all button */
button {
    background-color: rgb(186, 12, 197);
    padding: 10px 20px;
    color: #fff;
    border-radius: 5px;
    border: none;
}


/* Designing main Content */
.container{
    background: url(assets/bg.png);
    height: 100vh;
    background-size: cover;
    background-repeat: no-repeat;
}

.hero{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;

    width: 60%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero .hero-heading{
    font-size: 70px;
    text-align: center;
}

.hero .hero-description{
    font-size: 22px;
    font-family: 'Poppins';
    font-weight: 500;
}

.hero .button-large{
    font-size: 1.3em;
    position: absolute;
    top: 125%;
}

/* Extra's */

button, img, li{
    cursor: pointer;
}

button:hover{
    background: url('assets/bg.png');
    transition: all 1s ease;
    box-shadow: 0px 5px 100px  rgba(255, 255, 255, 9);
}

img:hover{
    opacity: 0.5;
}

::selection{
    background-color: rgb(186, 12, 197);
}

li:hover{
    box-shadow: 0px 5px 50px rgba(250, 81, 3, 9);
    background:linear-gradient( rgba(186, 12, 197, 0.9),  rgba(186, 12, 197, 0.4)),url(assets/bg.png);
    border-radius: 25px;
    transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
}