@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

*{margin: 0; padding: 0; font-family: 'Poppins', sans-serif;}

html{scroll-behavior: smooth; background-color: ghostwhite;}

main{
    position: relative;
    width: 1000px;
    height: auto;
    margin: auto;
}

h1{
    text-align: center;
    color: #780bf7;
}

p{
    padding-left: 4%;
    color: #2e054a;
}

span{
    font-weight: bolder;
}

.brand{
    position: relative;
    width: 16%;
    height: auto;
    left: 50%;
    transform: translateX(-50%);
    padding: 5% 0%;
}

.box{
    position: relative;
    width: 100%;
    height: auto;
    padding-bottom: 4%;
}

a{
    text-decoration: none;
    color: #2e054a;
}

a:hover{
    color: #780bf7;
}


/* ========================================================================================
                                    LANDSCAPE 1300px
======================================================================================== */
@media (max-width: 1300px) and (orientation: landscape) {
    main{
        position: relative;
        width: 90%;
        height: auto;
        margin: auto;
    }

    .brand{
        position: relative;
        width: 20%;
        height: auto;
        left: 50%;
        transform: translateX(-50%);
        padding: 8% 0%;
    }

}



/* ========================================================================================
                                            MOBILE
======================================================================================== */
@media (orientation: portrait) {
    main{
        position: relative;
        width: 90%;
        height: auto;
        margin: auto;
    }

    .brand{
        position: relative;
        width: 30%;
        height: auto;
        left: 50%;
        transform: translateX(-50%);
        padding: 8% 0%;
    }

    .box{
        position: relative;
        width: 100%;
        height: auto;
        padding-bottom: 4%;
    }

}