.back-button-container {
    position: absolute;
    top: 20px;
    right: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
}

.back-button {
    padding: 5px 10px;
    color: white;
    background-color: none;
    transition: background-color 0.3s ease, box-shadow 0.2s ease;

    img {
        width: 30px;
        height: 30px;
        filter: invert(100%);
    }
}

.back-button:hover {
    background-color: #ffd6f3;
    box-shadow: 0 0 0 5px #ffd6f3;
    color: black;
    transition: none;

    img {
        filter: invert(0%);
    }
}

.button-container {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    top: 20px;
    right: 20px;
    width: 350px;
    position: absolute;
    height: 50px;
}

.button {
    color: white;
    transition: padding 0.3s, background-color 0.3s, box-shadow 0.3s;
    padding: 5px 10px;
    background-color: none;
}


.button:hover {
    background-color: #ffd6f3;
    box-shadow: 0 0 0 5px #ffd6f3;
    color: black;
    transition: none;
}

@media screen and (max-width: 800px) {
    .button-container {
        width: 100%;
        justify-content: center;
        gap: 2em;
        left: 0;
    }

    .button {
        padding: 5px 5px;
        background-color: #ffd6f3;
        box-shadow: 0 0 0 5px #ffd6f3;
        color: black;
    }

    .button:active {
        background-color: black;
        box-shadow: none;
        color: white;
    }

    .back-button {
        padding: 5px 5px;
        background-color: #ffd6f3;
        box-shadow: 0 0 0 5px #ffd6f3;

        img {
            filter: invert(0);
        }
    }

    .back-button:active {
        background-color: black;
        box-shadow: none;

        img {
            filter: invert(100%);
        }
    }

}