body{
    background: linear-gradient(to bottom right, navy, purple);
    height: 100vh;
}

@media (max-width: 1024px) {

}

@media (min-width: 1025px) {
    .title{
        font-size: 3em;
        width: 1024px;
        margin-left: auto; margin-right: auto;
        border: 2px solid #f2f2f2;
        margin-top: 20px;
        padding-top: 20px;
        padding-bottom: 20px;
        margin-bottom: 50px;
    }
    .content{
        border: #f2f2f2 2px solid;
        width: 1024px;
        margin-left: auto; margin-right: auto; margin-bottom: 50px;
        .row{
            display: flex;
            justify-content: space-around;
        }
        .comic{
            width: 30%;
            display: inline-block;
            margin-top: 20px; margin-bottom: 10px;
            border: #f2f2f2 2px solid;
            background-color: pink;
            .comicTitle{
                font-size: 1.3em;
            }
        }
        .page{
            padding: 25px;
            .nextPage{
                float: right;
                color: white;
            }
            .nextPage:hover{
                color: lightgray;
            }
        }
    }
}
