.container{
    width: 390px;
    min-height: 100svh;
    box-sizing: border-box;
    margin: 0 auto;
    background-color: #432201;
    position: relative;
    z-index: 2;

    .container-inner{
        padding: 0 20px;
    }
}
.container:before{
    content: "";
    display: block;
    width: 100%;
    height: 120px;
    background: linear-gradient(to bottom, #000000, #432201);
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    pointer-events: none;
}
.container:after{
    content: "";
    display: block;
    width: 100%;
    height: 120px;
    background: linear-gradient(to top, #000000, #432201);
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -1;
    pointer-events: none;
}

.main{
    /* margin-bottom: 30px; */
}

body{
    font-family: "Kiwi Maru", serif;
    color: #ffffff;
}



.date{
    color: #c9caca;
    text-align: center;
    padding-top: 15px;
    font-size: 1.125rem;
    margin-bottom: 23px;
}
