﻿body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Header and menu items */

header {
    margin: 0;
    padding: 1rem;
    /*background-color: #404244; dark*/
    background-color: #cacaca;
}

.navbar {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

    .navbar p {
        font-family: 'Times New Roman', Times, serif;
        display: none;
        align-self: flex-end;
        /*color: #D3D6D8;dark*/
        /*color:white;*/
        font-size: 50px;
        padding-right: 50px;
    }

.logo {
    align-self: center;
    width: 200px;
    height: 133px;
}

.main {
    background-color: #1E1F20;
}

.menuIcon {
    padding-right: 20px;
    font-size: 25px;
    align-self: flex-end;
    margin-right: 0;
    color: white;
}

.menuItems {
    display: flex;
    /*background-color: #8C8068; dark*/
    background-color: #cecab0;
    justify-content: space-around;
    flex-direction: row;
    padding: 0;
    gap: 0;
    height: 0;
    transition: height 0.5s linear;
    overflow: hidden;
}

    .menuItems.show {
        height: 90px;
    }

.menuItemsContent {
    display: flex;
    flex-direction: column;
    list-style-type: none;
    padding: 5px 0px 5px 0px;
    margin: 0;
}
    .menuItemsContent ul{
        padding: 0;
        margin: 0;
    }

    .menuItemsContent li {
        padding: 0;
        margin: 0;
    }

    .menuItemsContent a {
        text-decoration: none;
        /*color: black; dark*/
        color: #2F3031;
        font-size: large;
        font-family: 'Golos Text';
        font-weight: 300;
        padding: 0px 5px 0px 5px;
        border-radius: 5px;
        transition: background-color 0.5s ease;
    }

        .menuItemsContent a:hover {
            background-color: #D3D6D8;
        }

.appContainer {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 50vh;
    background-color: white;
}

/*Footer*/
.footer {
    display: flex;
    justify-content: space-around;
    flex-direction: column;
    align-items: center;
    /*background-color: #404244;dark*/
    background-color:#cacaca;
    margin: 0;
    width: 100%;
    gap: 20px;
}

.container {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

.map {
    display: flex;
}


.footerContent {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: flex-start;
    color: white;
    width: 200px;
    padding: 0;
    margin: 0;
}

    .footerContent h3 {
        font-size: larger;
        font-weight: bold;
        padding: 10px 0;
        margin: 0;
        font-family: 'Golos Text';
    }

    .footerContent p {
        padding: 5px 0;
        margin: 0;
        font-family: 'Golos Text';
    }

    .footerContent a {
        padding: 5px 0;
        margin: 0;
        font-family: 'Golos Text';
        text-decoration: none;
        color: white;
    }

.iconLink {
    color: white;
}

@media (min-width: 700px) {
    /* menu items */
    .navbar p {
        display: flex;
    }

    .menuIcon {
        display: none;
    }

    .menuItems {
        height: 30px;
    }

    .menuItemsContent {
        flex-direction: row;
        justify-content: space-around;
        width: 50%;
        align-self: center;
    }

    /*Footer*/

    .footer {
        flex-direction: row;
        gap: 0;
    }
}
