body {
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url(https://64.media.tumblr.com/5352ccf719f10897127b6460212b2cad/c859ee9b91ee0b5e-3d/s75x75_c1/93b7f93f25ff423a0c488774ce169c6d3db83475.gif);
}

.container {
    display: grid;
    grid-template-columns: 700px;
    grid-template-areas: 'header'
                        'box1';
    grid-template-rows: 200px auto;
    grid-gap: 10px;
}

.container > * {
    background-color: red;
    font-smooth: never;
    -webkit-font-smoothing: none;
    font-family: arial;
    box-sizing: border-box;
    padding: 10px;
}

.header {
    grid-area: header;
    background: linear-gradient(to bottom, transparent, white), url(https://static.zerochan.net/CLANNAD.1024.22685.webp);
    background-size: cover; background-position-x: left;
    background-position-y: 30%;
    position:Relative;
    border-radius: 5px;
}

.header t {
    font-family: scriptina;
    font-smooth: all;
    -webkit-font-smoothing:all;
    font-size: 70px;
    color: white;
    text-shadow: 0px 0px 2px black, 0px 0px 2px black;
    position: absolute;
    left:0;
    top:-10px
}

.sidebox {
    grid-area: box2;
    border-width:7px;
    background-color: transparent;
    border-style:solid;
    border-image: url(https://moekkis.neocities.org/pics/blacklace.png) 7 fill round;
}

.mainbox {
    grid-area: box1;
    border-width:7px;
    background-color: transparent;
    border-style:solid;
    border-image: url(https://moekkis.neocities.org/pics/blacklace.png) 7 fill round;
}

#box2 {
    display:flex;
    gap:10px;
}

@font-face {
    font-family: scriptina;
    src: url(https://files.catbox.moe/kigjz5.ttf);
}
