

@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

*{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;

}
html, body{
        height: 100%;
}

.main{
    background-image: url('../img/bg-img.png');
height: 100%;
  background-position: center;
  background-size: cover;
  position: relative;

  /* color: #fff; */
}

.logo {
    position: absolute;
    top: 28%;
    left: 44%

}


.logo img{
        width: 70%;
        height: auto;
}

.content{
    position: absolute;
    top: 40%;
    left: 25%;
}

.content h1{
    font-size: 6rem;
    background: -webkit-linear-gradient(#342764, #00abab);
   -webkit-background-clip: text;
    font-family: "Roboto", sans-serif;
            background-clip: text;
            font-weight: 700;
    -webkit-text-fill-color: transparent;
}

.content h3{
       font-size: 1.7rem;
       text-align: center;
           font-family: "Roboto", sans-serif;
}

@media (max-width:767px) {
    .logo {
    position: absolute;
    top: 30%;
    left: 35%;
}
.logo img {
    width: 58%;
    height: auto;
}
.content {
    position: absolute;
    top: 40%;
    left: 14%;
}
.content h1 {
    font-size: 3rem;
}
.content h3 {
    font-size: 1.1rem;
}
}

@media (max-width: 450px) {
    .logo {
        position: absolute;
        top: 32%;
        left: 36%;
    }
        .logo img {
        width: 46%;
        height: auto;
    }
        .content h1 {
        font-size: 2.5rem;
    }
}


@media (max-width: 450px) {
        .logo {
        position: absolute;
        top: 32%;
        left: 34%;
    }
        .logo img {
        width: 45%;
        height: auto;
    }
        .content {
        position: absolute;
        top: 40%;
        left: 11%;
    }
        .content h1 {
        font-size: 2.5rem;
    }
        .content h3 {
        font-size: 1rem;
    }
}