p {
    font-family: roboto, Arial;
    margin-top: 0;
    margin-bottom: 0;
}

body {
    margin: 0;
    padding-top: 80px;
    padding-left: 96px; 
    padding-right: 24px;
    background-color: #f9f9f9;
    font-family: Roboto, Arial;
}


.load-more-container {
    display: flex;
    justify-content: center;
    margin-top: 40px;
    margin-bottom: 20px;
}
.load-more {
    border-radius: 8px;
    cursor: pointer;
    padding: 6px 20px;
    color: white;
    background-color: rgb(242, 60, 60);
    border-style: solid;
    border-width: 2px;
    border-color: white;
    box-shadow: 5px 5px 0px rgba(0, 0, 0, 0.5);
    font-family: gotham;
    font-weight: 1000;
    transition: 0.15s;
}

.load-more-text {
    text-decoration: none;
    color: white;
}

.load-more:hover {
    background-color: rgb(176, 8, 8);
    color: white;
    transition: 0.15s;
}

.load-more:active {
    background-color: black;
    color: white;
    box-shadow: 0px 0px 0px rgba(255, 0, 0, 0.1);
    transition: 0.15s;
}