.container {
    display: grid;
    grid-template-columns: 100%;
    grid-template-rows: repeat(3, min-content);
    width: var(--max-width);
    position: relative;
    left: calc((100% - var(--max-width)) / 2);
    height: auto;
}

.content {
    display: grid;
    grid-auto-rows: minmax(60px, auto);
    grid-template-columns: 100%;
}

.main-title {
    position: relative;
    width: 500px;
    margin: 0px 0px 10px 0px;
}

.title {
    line-height: 1em;
    font-size: 60px;
    color: rgb(55, 59, 77);
}

.content-left {
    position: relative;
    width: calc(var(--half-width) - 40px);
    left: 0px;
    height: auto;
}

.content-right {
    position: relative;
    width: calc(var(--half-width) - 40px);
    left: calc(var(--half-width) + 10px);
    height: auto;
}

.thormes-image {
    width: calc(var(--half-width) - 10px);
    height: auto;
}

.photo-gallery {
    width: 100%;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, auto);
    grid-gap: 15px;
}

.pic {
    position: relative;
    height: 230px;
    object-fit: cover;
    border-radius: 15px;
}

.pic img {
    width: 100%;
    height: 100%;
    border-radius: 15px;
    object-fit: cover;
}

.image-in-content-left {
    max-width: 400px;
}

.navigation-bar {
    display: flex;
    margin: 25px 0px;
    transition: var(--trans,color .4s ease 0s);
}

.menu ul {
    display: flex;
    gap: 40px;
    height: 100%;
    padding-inline-start: 100px;
    margin-block-start: 0;
    margin-block-end: 0;
}

.menu li {
    list-style: none;
    width: fit-content;
    font-size: 20px;
    cursor: pointer;
    margin: auto 0;
}

.menu li:hover {
    color: rgb(89, 161, 201);
}

.menu li a:active {
    color: rgb(89, 161, 201);
}

.rst {
    line-height: 1.5em;
    text-align: justify;
    font-size: 18px;
    color: rgb(55, 59, 77);
}

.opvallend-left {
    --ribbe: calc((var(--max-width) / 2) - 40px);
    width: var(--ribbe);
    height: var(--ribbe);
    background-color: #373B4D;
    display: grid;
    grid-auto-rows: minmax(70px, auto);
}

.opvallend-left-text {
    position: relative;
    color: white;
    margin: 80px 80px 0 80px;
    text-align: center;
    height: fit-content;
}

.opvallend-left-button {
    display: flex;
    color: white;
    justify-content: center;
    height: fit-content;
    margin: auto 0px;
}

.opvallend-left-button > a {
    text-align: center;
    border: 1px solid white;
    justify-content: center;
    padding: 15px 60px;
    font-weight: bold;
    transition: transform 0.5s;
}

.opvallend-left-button > a:hover {
    text-align: center;
    border: 1px solid white;
    background-color: white;
    color: rgb(55, 59, 77);
    justify-content: center;
    padding: 15px 60px;
    transform: translateY(-10px)
}

.content-div-container {
    display: flex;
    height: fit-content;
    margin: auto 0px;
    justify-content: center;
}

.content-right-image {
    max-width: calc(100% - 80px);
}

.rst-grid {
    display: grid;
}