body{
    background-image: linear-gradient(to right top,#baa6b2, #c699a8, #d28b94,#d98078,#d67956,#cc7443);
    display: flex;
    justify-content: center;
    justify-items: center;
    height: 100vh;
    margin: 0;
}

.container{
    display: flex;
    justify-content: space-between;
    width: 90%;
}
model-viewer{
    width: 100%;
    height: 800px;
}
.title{
    font-family: Arial, Helvetica, sans-serif;
    position: absolute;
    top: 50px;
    left: 50px;
    font-size: 1em;
    color: white;
    font-weight: bold;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
    text-transform: uppercase;
}
@media(max-width:768px){
    .container{
        width: 100%;
        flex-direction: column;
        align-items: center;
    }
    model-viewer{
        width: 90%;
        height: 400px;
    }
    .title{
        font-size: 2em;
        top: 15px;
        text-align: center;
    }
}