/*globals*/
@import url('https://fonts.googleapis.com/css2?family=PT+Sans:wght@400;700&display=swap');

:root {
    --main-color: #F2F2F2;
    --primary-background-color: #073333;
    --secondary-background-color: #628E8E;
    --tertiary-background-color: #000;
    --highlight-color: #9A6940;
}

/*css reset*/
*, *::before, *::after {
    box-sizing: border-box;
  }

* {
    margin: 0;
  }

body {
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
  }

img, picture, video, canvas, svg {
    display: block;
    max-width: 100%;
  }

input, button, textarea, select {
    font: inherit;
  }

p, h1, h2, h3, h4, h5, h6 {
    overflow-wrap: break-word;
  }

/*styles*/
html {
    font-family: 'PT Sans', sans-serif;
    font-weight: 400;
    background-color: var(--tertiary-background-color);
}

.logoContainer {
    background-color: var(--main-color);
    width: 100%;
    height: 170px;
    min-width: 325px;
}

.logo {
    width: 170px;
    margin: auto;
}

nav {
    background-color: var(--primary-background-color);
    width: 100%;
}

.navContainer {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 900px;
    min-width: 325px;
    margin: auto;
}

@media screen and (max-width: 800px) {
    .navContainer {
        flex-direction: column;
    }
}

.title {
    height: 70px;
    padding:10px 20px;
}

.menu {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    list-style-type: none;
}

.menu li {
    padding: 10px 20px;
}

.menu li a {
    color: var(--main-color);
    font-size: 1.1em;
    font-weight: 700;
    letter-spacing: 2px;
    text-decoration: none;
}

.menu li a:hover {
    color: var(--highlight-color);
}

.youtubeLogo {
    height: 50px;
}

.contentWrapper {
    background-color: var(--secondary-background-color);
    width: 100%;
    -webkit-box-shadow: inset 0px 5px 10px 0px rgba(0,0,0,0.5); 
    box-shadow: inset 0px 5px 10px 0px rgba(0,0,0,0.5);
}

.contentArea {
    width: 100%;
    max-width: 1200px;
    min-width: 325px;
    margin: auto;
}

.youtubeWrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    width: 100%;
}

.youtubeWrapper iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    max-width: 896px;
    height: 80%;
    max-height: 504px;
    -webkit-box-shadow: 0px 5px 10px 0px rgba(0,0,0,0.5); 
    box-shadow: 0px 5px 10px 0px rgba(0,0,0,0.5);
    border-radius: 15px;
}

@media screen and (max-width: 800px) {
    .youtubeWrapper iframe {
        width: 90%;
        height: 90%;
    }
}

footer {
    background-color: var(--tertiary-background-color);
    width: 100%;
    -webkit-box-shadow: 0px -5px 10px 0px rgba(0,0,0,0.5); 
    box-shadow: 0px -5px 10px 0px rgba(0,0,0,0.5);
}

.brands {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    max-width: 1200px;
    min-width: 325px;
    margin: auto;
    list-style-type: none;
    padding: 0;
}

.brands img {
    width: 200px;
    margin: 20px;
}

@media screen and (min-width: 800px) {
    .brands img {
        width: 250px;
        margin: 40px 20px;
    }
}

.impressum {
    color: var(--main-color);
    padding: 50px;
}

.impressum h1,h2,h3 {
    font-weight: 700;
    color: var(--primary-background-color);
    margin-top: 20px;
    margin-bottom: 10px;
}

.impressum a {
    text-decoration: none;
    color: var(--primary-background-color);
}