* {
    margin: 0;
    padding: 0;
    /* border: 1px solid red; */
    box-sizing: border-box;
}

body {
    background-color: rgb(24, 23, 28);
    height: auto;
}
.child_root{
    display: flex;
    justify-content:center;

}
.panel {
    display:flex;
    justify-content: center;
    width: fit-content;
    /* width: 50%; */
    background-color: #18171c;
    box-shadow: 20px 20px 40px rgba(0, 0, 0, 0.658);
    border: 1px solid white;
    color: whitesmoke;
    padding: 2em;
    border-radius: 15px;
    margin-bottom: 3em;
}

.Title img {
    display: inline;
    width: 350px;
    height: 350px;
    margin-bottom: 3%;
    border-radius: 15px;
}

.Title h1 {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;

}
.content {
    display: flex;
    flex-direction: column;
    text-overflow: clip;
    margin-left: 5em;
    width: 50dvh;
    justify-content: center;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;

}
.content img{
    display: flex;
    margin-left: auto;
    margin-top: 30px;
}
@media (max-width: 1067px){

    .content {
       display: flex;
       flex-direction: column;
       min-width: fit-content;
    }
    .Title img {
        display: none;
    }
    .Title h1{
        font-size: .90em;
    }

}