

/* NORMALIZE */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    appearance: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
/* NORMALIZE */

/*body {
    background: #121212;
    color: #F1F1F1;
    font: 500 normal 22px/1.3 'Inter', sans-serif;
}
*/
/* to prevent scroll bumps, remove this if you want to keep the flow of the page */
html:has(.mstudio), 
body:has(.mstudio) {
    overflow: hidden;
}

.mstudio {
    height: 100dvh;
    overflow: hidden;
    position: relative;
}
/*
.mstudio .content-effect {
    font-size: min(60px, 5.6vw);
    text-align: center;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    position: absolute;
    align-items: center;
    letter-spacing: -0.03em;

    span { 
        display: block;
        width: max-content;
    }
    span:last-child {
        color: #999;
    }
}
*/
.mstudio img {
    width: 15vw;
    height: 15vw;
    position: absolute;
    object-fit: cover;
    border-radius: 4%;
    z-index: 5;
}

.mstudio .medias img {
    width: 1px;
    height: 1px;
    top: 0;
    left: 0;
    position: absolute;
    visibility: hidden;
    pointer-events: none;
}

@media (max-width: 768px) {
    .mstudio img {
        width: 35vw;
        height: 35vw;
    }
}