*{
    box-sizing: border-box;
    margin: 0%;
    padding: 0%;
    font-family: "Fahkwang", sans-serif;
}

html,body{
    overflow: hidden;
}

#main{
    height: 100vh;
    width: 100vw;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

#left{
    /* background-color: antiquewhite; */
    width: 40%;
    height: 90%;
    margin-left: 90px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-top: 50px;
}

#left h1{
    font-size: 90px;
    font-weight: 500;
    line-height: 95px;
}

#left-bottom{
    height: 40%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.color{
    border-radius: 50px;
    border: 1px solid black;
    width: fit-content;
    display: flex;
    padding: 5px 10px;
    align-items: center;
}

.color1{
    background-color: brown;
    height: 16px;
    width: 16px;
    border-radius: 50%;
    margin-left: 14px;

}
.color2{
    background-color: burlywood;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    margin-left: 3px;
}

#left h4{
    margin-top: 40px;
}

#left p{
    margin-bottom: 50px;
    width: 65%;
}

#right{
    height: 75%;
    width: 30%;
    border-color: bisque;
    margin-right: 250px;
    /* margin-bottom: 100px; */
}

#right-top{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
#right-top h3{
    margin-right: 16px;
    font-size: 15px;
}
#right-top h3 span{
    margin-right: 5px;
}

#right-top h3 i{
    font-size: 13px;
    margin-left:-3px ;
}
#right img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    margin-top: 10px;
    position: relative;
}

#vertical{
    /* background-color: red; */
    transform-origin: 0 0;
    rotate: -90deg;
    padding-left: 80px;
    margin-left: -50px;
    font-size: 28px;
    /* position: absolute; */
    right: 10%;
    top:50%;
}   

.right-golo{
    height: 170px;
    width: 170px;
    background-color: rgb(23, 18, 18);
    border-radius: 50%;
    position: absolute;
    right: 10%;
    top:50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 100;

}

@media (max-width:500px) {

    html,body{
        overflow:visible;
        overflow-x: hidden;
    }

    #main{
        height: 100%;
        width: 100vw;
        display: flex;
        align-items: center;
        flex-direction: column-reverse;
        justify-content: flex-end;
    }
    
    #left{
        /* background-color: antiquewhite; */
        width: 100%;
        height: 70%;
        margin-left: 100px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        padding-top: 0px;
    }
    
    #left h1{
        font-size: 60px;
        font-weight: 500;
        line-height: 65px;
    }
    
    #left-bottom{
        height: 60%;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
    
    .color{
        border-radius: 50px;
        border: 1px solid black;
        width: fit-content;
        display: flex;
        padding: 5px 10px;
        align-items: center;
    }
    
    .color1{
        background-color: brown;
        height: 16px;
        width: 16px;
        border-radius: 50%;
        margin-left: 14px;
    
    }
    .color2{
        background-color: burlywood;
        width: 16px;
        height: 16px;
        border-radius: 50%;
        margin-left: 3px;
    }
    
    #left h4{
        margin-top: 40px;
    }
    
    #left p{
        margin-bottom: 50px;
        width: 75%;
    }
    
    #right{
        height: 100%;
        width: 70%;
        border-color: bisque;
        margin-right: 30px;
        /* margin-bottom: 100px; */
    }
    
    #right-top{
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-top: 20px;
    }
    #right-top h2{
        font-size: 20px;
    }
    #right-top h3{
        margin-right: 20px;
        font-size: 12px;
    }
    #right-top h3 span{
        margin-right: 1px;
    }
    #right-top h3 i{
        font-size: 13px;
        margin-left:-3px ;
    }
    #vertical{
        transform-origin: 0 0;
        rotate: -90deg;
        padding-left: 20px;
        margin-left: -34px;
        font-size: 20px;
        right: 10%;
    }   
    .right-golo{
        position: sticky;
        height: 100px;
        width: 100px;
        margin: 0 auto;
        margin-top: -80px;
        font-size: 17px;
        font-weight: 100;
    }
    #right img{
        width: 110%;
        height: 100%;
        object-fit: cover;
        margin-top: 10px;
        position: relative;
    }
    
}