@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;500;600&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Open Sans', sans-serif;
}
.container{
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    background-image: linear-gradient(to right, #00014a, #281f6f);
}
.layer1{
    position: absolute;
    top: 25%;
    left: 10%;
    width: 350px;
    color: white;
}
.layer1 h1{
    font-size: 50px;
}
.layer1 p{
    font-size: 18px;
    margin-top: 40px;
    margin-bottom: 80px;
}
.layer1 a{
    text-decoration: none;
    color: white;
    font-weight: 600;
    font-size: 18px;
    padding: 15px 30px ;
    border-radius: 50px;
    background-image: linear-gradient(to right, tomato, orange);
   
}
.layer{
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-position: right;
    background-size: cover;
}
.layer:nth-child(1){background-image: url(./img/1.png);}
.layer:nth-child(2){background-image: url(./img/2.png);}
.layer:nth-child(3){background-image: url(./img/3.png);}
.layer:nth-child(4){background-image: url(./img/4.png);}
.layer:nth-child(5){background-image: url(./img/5.png);}
.layer:nth-child(6){background-image: url(./img/6.png);}
.layer:nth-child(7){background-image: url(./img/7.png);}