body,
main {
    padding: 0;
    margin: 0;
    font-size: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

* {
    font-family: Arial, 'sans-serif';
}

.container {
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    border-radius: 5px;
    margin: 1rem;
    width: 50vw;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
    overflow-y: auto;
}

.container-header {
    color: #fff;
    background-color: lightcoral;
    padding: 1rem;
}

.container-header a {
    color: #fff;
}

.container-header button {
    padding: 1rem;
    background-color: #fff;
    outline: none;
    border: none;
    border-radius: 5px;
}

.container-header button a {
    color: lightcoral;
    text-decoration: none;
    font-size: 1rem;
}

.container-content {
    padding: 1rem;
}

.boutton-container {
    margin: 1rem;
}

.boutton-container button {
    border: none;
    background-color: lightcoral;
    color: #fff;
    padding: 1rem;
    border-radius: 5px;
    margin: 1rem;
}

.code {
    background-color: #e1e1e1;
    border: none;
    resize: vertical;
    width: 100%;
    height: 500px;
    outline: none;
    border-left: 3px solid lightcoral;
    padding: 0.5rem;
    margin-top: 1rem;
}

.debug {
    position: fixed;
    top: 0;
    right: 0;
    width: 175px;
    height: 175px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
    padding: 0.5rem;
}

@media(max-width: 900px) {
    .container {
        width: 100vw;
        height: 100vh;
        margin: 0;
        border-radius: 0;
    }
    .debug {
        display: none;
    }
}