body {
    font-family: 'KoHo';
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    height: 100%;
    font-weight: 600;
    text-align: center;
    user-select: none;
}

.sidebar {
    font-family: 'KoHo';
    font-weight: bold;
    width: 250px;
    height: 100%;
}

header {
    position: absolute;
}

.sidebar ul {
    height: 100%;
    padding: 0px;
    list-style-type: none;
    display: flex;
    flex-direction: column;
    justify-content: start;
}

.sidebar ul li {
    margin-bottom: 1rem;
    cursor: pointer;
    text-align: left;
    padding: 8px;
    font-size: 22px;
    color: var(--textcolor-main);
}

.header__picture {
    background-image: url(../images/background/quokka-background.jpg);
}

.main {
    color: var(--textcolor-main);
    flex: 1;
    width: 100%;
    display: flex;
    background-image: url(../images/textures/texture-background.jpg);
    background-size: cover;
}

.welcome-message {
    align-self: center;
    flex: 1;

    a {
        display: block;
        margin-top: 10px;
        color: black;
        text-decoration: none;
    }

    a:hover {
        color: var(--title-main);
        text-decoration: underline;
    }

    a:visited {
        color: black;
    }
}

.welcome-message h3 {
    color: var(--title-main);
    font-size: var(--large-font);
    line-height: 83.2px;
    text-align: center;
    margin: 16px 0px 0px 0px;
    padding: 0 3rem;
}

.welcome-message p {
    color: var(--textcolor-main);
    text-align: center;
    font-size: var(--base-font);
    line-height: 28.6px;
    padding: 0 3rem;
}

.animal-image {
    width: 250px;
    height: auto;
    margin: 20px auto;
}

@media screen and (max-width: 768px) {

    .main {
        flex-direction: column;
    }

    .sidebar {
        height: auto;
        width: auto;
    }

    .sidebar ul {
        height: auto;
        width: auto;
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
    }

    .welcome-message p {
        padding: 0 2rem;
    }

    .welcome-message h3 {
        padding: 0 1rem;
        font-size: 48px;
    }
}