body {
    font-family: Arial, sans-serif;
    margin: 20px;
    padding: 0;
    background-color: #f4f4f4;
}

.container {
    margin: auto;
    margin-top: 20px;
    background-color: #f4f4f4;
}

.page-title {
    color: #484848;
    font-size: 35px;
    padding-bottom: 10px;
}

.item-info {
    padding: 5px;
    border: 1px solid #e4e4e4;
    border-radius: 5px;

    .title {
        font-size: 16px;
        padding-bottom: 5px;
        color: #454545;
    }

    .info {
        font-size: 18px;
        color: #1c1c1c;
    }
}

.list-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

footer {
    /* position: absolute;
    bottom: 0px; */

    width: 100%;

    padding-top: 10px;
    padding-bottom: 10px;
}

@media only screen and (max-width: 1080px) {
    .page-title {
        color: #484848;
        font-size: 45px;
        padding-bottom: 10px;
    }

    .item-info {
        padding: 5px;
        border: 1px solid #e4e4e4;
        border-radius: 5px;

        .title {
            font-size: 25px;
            padding-bottom: 5px;
            color: #454545;
        }

        .info {
            font-size: 28px;
            color: #1c1c1c;
        }
    }

    .list-info {
        display: flex;
        flex-direction: column;
        gap: 50px;
    }
}