@font-face {
    font-family: gilroy;
    src: url("./font/Gilroy-Regular.woff");
}
*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: Gilroy, sans-serif;
}
html, body{
    height: 100%;
    width: 100%;
}

#main{
    height: 100%;
    width: 100%;
    display: grid;
    grid-template-columns: 25% 25% 50%;
    grid-template-rows: 30% 55% 15%;
}
#left-up-left{
    padding: 30px;
}
#square{
    height: 2.5vw;
    width: 2.5vw;
    background-color: #000000;
    transform: rotate(45deg);    /* rotate:  45deg; */
}
#left-up-right{
    padding: 30px;
    justify-self: right;
    text-align: end;
    color: #333;
}
#left-up-right h3{
    margin-bottom: 30px;
    font-size: 1.4vw;
    font-weight: 900;
}
#left-up-right h4{
    font-size: 1.2vw;
    font-weight: 500;
}
#left-center{
    grid-column:  1 / 3;
    padding: 30px;
    font-size: 3vw;
    line-height: 5vw;
}
#left-center h1:nth-child(2n){
    width: 90%;
    text-align: end;
}
#left-bot{
    grid-column:  1 / 3;
    padding: 30px;
}
#left-bot p{
    font-size: 1vw;
}
#right{
    grid-column: 3;
    grid-row: 1 / 4;
    padding: 30px;
}
#right img{
    height: 100%;
    width: 100%;
    object-position: top;
    object-fit: cover;
    border-radius: 8px;
}