* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    scroll-behavior: smooth;
}

body {
    display: flex;
    flex-direction: column;
    font-family: 'Roboto', sans-serif;
}

main {
    display: flex;
    flex-direction: column;
    flex: 1 0 auto;
}

:root {
    --accent-color: #0070F3;
}


/* Menü */

header nav {
    position: fixed;
    width: 100%;
    height: 75px;
    z-index: 2;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0px 0px 7.5px -5px black;
}

header nav ul {
    display: flex;
    flex-direction: row;
    gap: 25px;
    justify-content: space-evenly;
    align-items: center;
    height: 100%;
}

header nav ul li {
    list-style: none;
}

header nav ul li a {
    font-size: 22.5px;
    font-weight: 500;
    color: black;
    text-decoration: none;
    text-transform: uppercase;
    transition: color .3s;
}


/* Footer */

footer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #333;
    color: whitesmoke;
}

.top-footer-container {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    gap: 25px;
    width: 100%;
    padding: 25px;
}

.footer-map-container, .footer-text-container {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 500px;
}

.footer-map-container iframe {
    width: 100%;
    height: auto;
    min-height: 300px;
}

.footer-text-container a {
    color: white;
}

.footer-title {
    font-size: 25px;
    text-align: center;
    margin-bottom: 25px;
}

.bottom-footer-container {
    width: 100%;
    background-color: #272727;
    text-align: center;
    padding: 15px;
}

@media only screen and (max-width: 750px) {
    .top-footer-container {
        flex-direction: column;
        align-items: center;
        gap: 50px;
    }

    .footer-text-container a {
        text-align: center;
    }

    .footer-map-container iframe {
        width: 100%;
    }
}
