body {
    background-color: #FFD3CC;
    overflow: hidden;
}

.header {
    display: flex;
    align-items: center;
    padding: 0;
    position: absolute;
    height: 48px;
    top: 20px;
    width: 80%;
    justify-content: flex-start;
}

.content {
    padding: 20px; 
    margin-top: 150px; /* Voegt ruimte toe boven de content */
    text-align: center;
}

.exercise-container {
    margin-top: 50px; /* Voegt ruimte toe boven de content */
}

.exercise-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr); /* Vijf kolommen van gelijke breedte */
    gap: 20px; /* Ruimte tussen de afbeeldingen */
    margin-top: 20px; /* Ruimte boven de grid */
}

.exercise {
    text-align: center;
}

.exercise img {
    max-width: 100%; /* Zorg ervoor dat afbeeldingen niet breder zijn dan hun container */
    height: auto; /* Houdt de verhoudingen van de afbeeldingen */
}

.small-img {
    max-width: 100px; /* Set a maximum width for the images */
    height: auto;
}

.goal-section {
    background-color: white;
    padding: 20px;
    border-radius: 15px;
    border: 2px solid #000;
    max-width: 800px;
    margin: 40px auto; /* Zorgt ervoor dat het centraal onder de tekst komt */
    text-align: center;
}

.goal-options {
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-top: 20px;
}
.goal-option img {
    max-width: 100%; /* Schaal de afbeelding naar maximaal de breedte van de container */
    height: auto; /* Behoud de verhouding van de afbeelding */
    display: block; /* Zorg ervoor dat de afbeelding als block-element wordt weergegeven */
    margin: 0 auto 10px auto; /* Centreer de afbeelding horizontaal */
    padding-top: 10px; /* Voeg wat ruimte boven de afbeelding toe */
}

.goal-option {
    width: 150px;
    height: 200px;
    background-color: #f8f8f8;
    border-radius: 10px;
    padding: 10px;
    text-align: center;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    transition: border 0.3s ease;
    cursor: pointer;
}

.logo {
    display: flex;
    align-items: center;
    margin-left: 20px;
    margin-top: 65px;
}

.info-text {
    max-width: 600px;
    text-align: left; 
}

.getting_beast {
    height: 10px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 30px;
    line-height: 1;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #212121;
    margin-left: 20px;
    margin-right: 20px;
}

.getting_beast p {
    margin: 0;
}

.hamburger {
    cursor: pointer;
    font-size: 36px;
    position: fixed;
    right: 20px;
    top: 20px;
    z-index: 2000;
}

.menu {
    display: none;
    position: fixed;
    top: 0px;
    right: 0;
    background-color: #FFF2F3;
    width: 320px;
    height: 100%;
    border-radius: 8px;
    padding: 10px;
    z-index: 1000;
    opacity: 0.5; 
}

.menu-content p {
    margin: 5px 0;
    color: black;
}

.follow-us-text {
    position: absolute;
    right: 17px;
    top: 40%;
    transform: rotate(90deg);
    font-size: 24px;
    color: #212121;
    white-space: nowrap;
}

.follow-us {
    position: absolute;
    right: 50px;
    top: 25%;
    color: #212121;
    white-space: nowrap;
    text-align: center;
}

.social-icons {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 10px;
}

.social-icon {
    font-size: 25px;
    margin: 5px 0;
    color: #212121;
    transform: rotate(90deg);
    transition: transform 0.3s ease;
}

.social-icon:hover {
    transform: rotate(0deg);
}

.menu.show {
    display: block;
}

.buttons {
    margin-left: 0;
    padding-left: 0;
    text-align: left;
    display: block;
}

a:hover {
    text-decoration: none;
}

.custom-btn-width {
    text-decoration: none;
    width: 200px;
    display: block;
    margin: 10px 0;
    background-color: #F24B4B;
    color: white;
    border: none;
    padding: 10px;
    font-size: 16px;
    cursor: pointer;
}

.run img {
    width: 40%;
    height: auto;
    position: absolute;
    top: 60%;
    left: 55%;
    transform: translate(-50%, -50%);
    z-index: 10;
}

.run {
    margin-left: -900px;
}

.getting_beast a {
    color: inherit; 
    text-decoration: none; 
}

.getting_beast a:hover {
    color: inherit;
}

.diagonal-rectangle {
    position: absolute;
    top: 0;
    left: 500px;
    width: 400px;
    height: 1000px;
    background-color: #FF4A4A;
    transform: rotate(-20deg);
    transform-origin: top left;
    z-index: 1;
}

@media (max-width: 600px) {
    .header {
        flex-direction: column;
        align-items: flex-start;
        height: auto;
        top: 10px;
        width: 100%;
        padding-left: 10px;
    }

    .logo {
        margin-top: 10px;
    }

    .getting_beast {
        text-decoration: none;
        font-size: 24px;
        margin: 10px 0 0 0;
        line-height: 1;
        text-align: left;
    }

    .diagonal-rectangle {
        left: 45%;
        transform: translateX(-50%) rotate(-20deg);
        width: 40%;
        height: 1000px;
    }

    .run img {
        width: 60%;
        top: 50%;
        left: 80%;
        transform: translate(-50%, -50%);
    }

    .menu {
        width: 100px;
        top: 0px;
    }
}
