body {
    text-align: center;
    font-family: "Montserrat", sans-serif;
    background-color: black;
    color: aliceblue;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.site {
    min-height: 100dvh;
    display: grid;
    grid-template-rows: auto 1fr auto;
    grid-template-columns: minmax(0, 1fr);
}

footer {
    margin: 50px;
    font-size: 12px;
}

button {
    /* Base button styles */
    background-color: #f0f0f0;
    border: 1px solid #ccc;
    padding: 10px 20px;
    cursor: pointer;
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
}

button:hover {
    /* Hover effect for the entire button */
    background-color: #1C325B;
    color: #EBEAFF;
}

button a {
    /* Base link styles within the button */
    color: #333;
    text-decoration: none;
}

a:hover  {
    /* Hover effect for the link within the button */
    color: #EBEAFF;
    background-color: #1C325B;
}

.page-link {
    text-decoration: none;
    background-color: #f0f0f0;
    border: 1px solid #ccc;
    padding: 10px 20px;
    cursor: pointer;
    color: black;
}

a {
    text-decoration: none;
    color: #FF4545;
}

h1 {
    font-family: "Limelight", sans-serif;
}
#product-display {
    width: 500px;
    height: 500px;
    display: grid;
    align-items: center;
    justify-items: center;
}

#product-title {
    width: 500px;
    height: 58px;
    margin: 7px;
    font-size: 20px;
}

#product-description {
    width: 500px;
    height: 60px;
    margin: 5px;
}

#product-image {
    width: 300px;
    height: 400px;
}

#product-image img {
    object-fit: contain;
}

button {
    margin: 10px 0 10px 0;
}

@media (max-width: 860px) {
    #product-display {
        width: 400px;
        height: auto;
    }
    #product-image {
        width: 250px;
        height: auto;
    }
    #product-image img {
        object-fit: contain;
    }
    h1 {
        padding: 0px;
        margin: 0;
    }
    #product-title {
        width: 350px;
        height: 60px;
        margin: 5px;
    }
    #product-description {
        width: 350px;
        height: 100px;
        margin: 5px;
    }
    footer {
        margin: 7px;
        font-size: 12px;
    }
}