body {
    background-image: url(/assets/images/PricesBackground.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    background-position: center center;
    background-color: #27651E;
    outline: 10px solid #27651E;
    display: flex;
    min-height: 100vh;
    width: 100%;
    outline-offset: -10px;
}

a {
    color: #27651E;
}

a:hover {
    color: #4E9643;
}

.title {
    text-align: center;
}

.content-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.content-container .table-title {
    font-weight: bold;
}

.content-container .table-container {
    display: flex;
    flex-direction: row;
    gap: 20px;
    flex-wrap: wrap;
    justify-self: center;
    margin: 0 auto;
    font-weight: bold;
}

.content-container .table-container div {
    display: flex;
    flex-direction: column;
    text-align: center;
    flex: 1 1 auto;
}

.logo {
    z-index: -1;
    position: absolute;
    top: 40px;
    left: 40px;
    height: 200px;
    width: auto;
}

@media screen and (max-width: 1640px) {
    .logo {
        display: none;
    }
}