.content-section {
    font-size: 1.3rem;
    display: flex;
    flex-direction: column;
}

.content-section p {
    font-size: 1.3rem;
}

.text-cover {
    padding: 5px 20px 5px 20px;
    background-color: rgba(255, 255, 255, 0.03);
    border-radius: 25px;
}

.section-info {
    margin: 20px 0 20px 0;
}

.section-info-row {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.section-gap{
    width: 40px;
}

@media (max-width: 768px) {
    .section-info-row {
        flex-direction: column;
    }
}

/* canvas and content blocks */
.ui-block-main { 
    margin-left: 10%; 
    margin-right: 10%;
}

.ui-block-text {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.ui-embedded-block {
    margin-left: 5%;
    width: 60%;
    height: 500px;
    position: relative;
    background-color: #000;
    border-radius: 25px;
}

.ui-embedded-modified {
    width: 70%;
    height: 500px;
    border-radius: 25px;
}

.ui-embedded-block canvas {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.ui-embedded-text {
    margin-right: 10%;
    width: 20%;
}

canvas { 
    display: block;
    border-radius: 25px;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.2) ; /*show test*/
}

#webgl-error { 
    position: absolute; 
    top: 20px; 
    left: 20px; 
    color: red; 
    font-family: Arial; 
    font-size: 16px; 
}

.hwn1 {
    margin-top: -150px;
    margin-right: 10%;
    height: 255px;
    opacity: 0.2;
}

iframe {
    border: none;
}

.img-m {
    width: 30%;
    height: auto;
    border-radius: 25px;
    rotate: -12deg;
    align-self: center;
}

.img-m-mob {
    display: none;
    align-self: center;
    margin-left: 15%;
    margin-top: 50px;
    margin-bottom: 75px;
    border-radius: 25px;
    width: 80%;
    rotate: -6deg;
    height: auto;
}

.img-c {
    width: 25%;
    height: max-content;
    rotate: -12deg;
    align-self: center;
    transition: rotate 1s, transform 1s;
}

.img-c:hover {
    rotate: 6deg;
    transform: scale(1.1);
}

@media (max-width: 1400px) {
    .img-c {
        width: 35%;
        align-self: center;
    }
}

@media (max-width: 1100px) {
    .img-c {
        width: 45%;
        align-self: center;
    }
}

@media (max-width: 768px) {
    .img-c {
        margin: 0 0 20px 0;
        width: 70%;
    }

    .img-m-mob {
        display: block;
    }

    .img-m {
        display: none;
    }

    .ui-embedded-text {
        margin-right: 10%;
        margin-left: 10%;
        width: auto;
    }

    .ui-embedded-block {
        width: 90%;
        margin-top: 50px;
        height: 45vh;
    }

    .ui-embedded-modified {
        width: 100%;
    }

    .ui-block-main {
        margin-left: 5%;
        margin-right: 5%;
    }

}

.width-35 {
    width: 35%;
}

.width-50 {
    width: 50%;
}

.width-60 {
    width: 60%;
}

.spacer-gap {
    margin-left: 50px;
}

@media (max-width: 768px) {
    .width-50 {
        width: 100%;
    }

    .width-35 {
        width: 90%;
    }

    .width-60 {
        width: 90%;
    }
}

