@font-face {
    font-family: Poppins;
    src: url(/fonts/Poppins-Light.ttf);
}

* {
    padding: 0;
    margin: 0;
}
.onesection{
    display:flex;
    flex-direction: column;
    gap:70px;
    height:100%;
    width:100%;
    justify-content: center;
    align-items: center;
}
.onesection img{
    width:178px;
    height:auto;
    object-fit: contain;
}
.sub-text{
    color: #000;
    text-align: center;
    font-family: Poppins;
    font-size: 20px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
}
body{
    font-size: 14px;
    font-style: normal;
    padding: 15px;
}
.note{
    color: #000;
    text-align: center;
    font-family: Poppins;
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
}
a{
    text-decoration: none;
    color: #000;
    transition: all 1s ease;
}
a:hover{
    color:grey;
}


@media only screen and (max-width: 750px) {
   body .onesection img{
        width:200px;
        height:auto;
        object-fit: contain;
    }
    body  .sub-text{
        font-size:22px;
    }
    body  .note{
        font-size:16px;
    }
}
