/* Make site wide styles here */
html, body, p {
    margin: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: #CCCCCC;
}

p, h1, h2, h3 h4, h5, h6, a {
    font-family: 'Courier New', Courier, monospace;
}

a:link,
a:visited,
a:hover,
a:active {
  color: #000000;
}

#logo {
    height: 150px;
}

.menu-element {
    margin: 0.8vw;
    padding: 0.2vw;
    text-decoration-line: none;
    font-size: 24px;
    font-weight: 600;
}

.flexy {
    display: flex;
    flex-flow: row;
    justify-content: space-evenly;
    align-items: center;
}

.image-heading {
    width: 50vw;
    height: 700px;
    align-content: center;
    background-repeat: no-repeat;
    background-size: auto;
    background-position: center center;
}

    .image-heading:nth-child(odd) {
        text-align: right;
    }

    .image-heading h2 {
        padding: 5px;
        width: fit-content;
        font-size: 45px;
        color: #999999;
        backdrop-filter: blur(25px);
        border-radius: 20px;
    }

.info-section {
    width: calc(40vw);
    padding: 10px 5vw;
}

p {
    font-size: 22px;
}

@media only screen and (min-width: 1162px) {
    .image-heading:nth-child(odd) h2 {
        float: right;
        margin-right: 10px;
    }

    .image-heading:nth-child(even) h2 {
        margin-left: 10px;
    }
}

@media only screen and (max-width: 1161px) {
    #logo {
        height: 110px;
    }

    .image-heading {
        width: 100vw;
        height: 350px;
    }
        
        .image-heading h2 {
            margin: auto;
        }

    .info-section {
        width: 90vw;
        padding: 50px 0;
    }

    .flexy:nth-child(odd) {
        flex-flow: column-reverse;
    }

    .flexy:nth-child(even) {
        flex-flow: column;
    }
}

@media only screen and (max-height: 500px) {
    .menu-element {
      font-size: 5vh;
    }
}