:root {
    --padding-main: 50px;
}

@media screen and (max-width: 1000px) { 
    :root {
        --padding-main: 30px;
    }
}

@media screen and (max-width: 500px) { 
    :root {
        --padding-main: 12px;
    }
}

body {
    margin: 0;
    padding: 0;
    font-family: "Playfair Display", serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-size: 16px;
    padding-left: var(--padding-main);
    padding-right: var(--padding-main);
    box-sizing: border-box;
    background-color: #fcfcf778;
}

.hovergrow {
    transition: transform 0.5s ease;
}

.hovergrow:hover {
    transform: scale(1.03);
    cursor: pointer;
}

.standard_padding {
    width: 100%;
    padding-left: 50px;
    padding-right: 50px;
    box-sizing: border-box;
}

@media screen and (max-width: 1000px) {
    .standard_padding {
        padding-left: 30px;
        padding-right: 30px;
    }
}

@media screen and (max-width: 500px) {
    .standard_padding {
        padding-left: 12px;
        padding-right: 12px;
    }
}

.back_button {
    position: absolute;
    top: 78px;
    left: calc(var(--padding-main) + 10px);
    color: white;
    text-decoration: none;
    font-size: 18px;
    padding: 8px 16px;
    background: rgba(0, 0, 0, 0.8);
    transition: background 0.3s ease;
}

.back_button:hover {
    background: rgba(0, 0, 0, 0.7);
    color: white;
    text-decoration: underline;
}

.back_button > span {
    position: relative;
    top: -1.5px;
    margin-right: 8px;
    text-decoration: none;
    display: inline-block;
}