*
{
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    transition-duration: 0.2s;
}

html
{
    scroll-behavior: smooth;
}

body
{
    background-color: dimgrey;
    font-family: Verdana;
}

nav
{
    display: flex;
    justify-content: space-between;
    position: fixed;
    height: 6vh;
    width: 100%;
    background-color: black;
    border-bottom-left-radius: 1rem;
    border-bottom-right-radius: 1rem;
    z-index: 1000;
}
nav #menu
{
    align-self: center;
}
nav ul
{
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
}
nav li
{
    margin-right: 1.5rem;
}
nav a
{
    text-decoration: none;
    color: white;
    text-transform: uppercase;
}
nav a:hover
{
    color: lightskyblue;
}
nav img
{
    height: 70%;
    width: auto;
    margin-left: 1vw;
    align-self: center;
}

.bigCard
{
    width: 100%;
    height: 100vh;
    /*padding-top: 6vh;*/
}
#home
{
    background-image: url("images/banner-top.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: center;
    vertical-align: center;
}
#home > a
{
    position: absolute;
    bottom: 8vh;
    font-size: xx-large;
    color: white;
    animation: jump .5s linear alternate infinite;
}
@keyframes jump
{
    0%   {transform: translate3d(0,0,0);}
    40%  {transform: translate3d(0,10%,0);}
    100% {transform: translate3d(0,20%,0);}
}

#home > a:hover
{
    color: lightskyblue;
}
#home > img
{
    width: 20%;
}
#mainTitles
{
    text-align: center;
    color: white;
    width: 100%;
}
h1 h2
{
    font-family: "Helvetica Neue";

}
h1
{
    font-size: xx-large;
    text-shadow:  3px 3px 0px black;
}
#title:hover
{
    color: #AA772A;
}
h2
{
    text-shadow:  3px 3px 0px black;
}
#mainTitles > h1
{
    background-color: rgba(60, 86, 97, 0.5);
    -webkit-backdrop-filter: blur(3px);
    width: 100%;
    backdrop-filter: blur(3px);
    padding: 0.5rem;
}
#mainTitles > h2
{
    background-color: rgba(60, 86, 97, 0.5);
    -webkit-backdrop-filter: blur(3px);
    backdrop-filter: blur(3px);
    padding: 0 0.5rem 0.5rem;
    justify-content: center;
}
#cool
{
    color: lightskyblue;
}

#about
{
    color: white;
    background-image: url("images/arctic.jpg");
    background-size: cover;
}
#about > h1
{
    text-align: center;
    background-color: rgba(60, 86, 97, 0.5);
    -webkit-backdrop-filter: blur(3px);
    backdrop-filter: blur(3px);
    padding: 0.5rem;
    padding-top: 6vh;
}

#businessCard
{
    display: flex;
    justify-content: space-around;
    padding-top: 3rem;
    /*background-color: rgba(128, 128, 128, 0.5);
    -webkit-backdrop-filter: blur(3px);
    backdrop-filter: blur(3px);
    padding-bottom: 1rem;*/
}
#businessCard > img
{
    height: 50vh;
    border: 2px solid black;
    border-radius: 1rem;
}
#myInfo
{
    margin-left: 2vw;
    max-width: 50vw;
    display: flex;
    align-items: center;
    text-shadow:  1px 1px 0px black;
}
#myInfo > ul
{
    list-style: none;
    background-color: rgba(60, 86, 97, 0.5);
    -webkit-backdrop-filter: blur(3px);
    backdrop-filter: blur(3px);
    border-radius: 1rem;
    padding: 0.5rem;
    border: 2px solid lightskyblue;
}
#myInfo > ul li:nth-child(2),
#myInfo > ul li:nth-child(3)
{
    margin-top: 1rem;
}
#myInfo > ul > li > a
{
    color: white;
    text-decoration: none;
}
#myInfo > ul > li > a:hover
{
    color: lightskyblue;
}
#verticalLine
{
    display: none;
    margin-left: 2vw;
    border: 1px solid black;
}

#services
{
    color: white;
    background-image: url("images/services.jpg");
    background-size: cover;
}
#services h1
{
    text-align: center;
}
#services > h1
{
    background-color: rgba(60, 86, 97, 0.5);
    -webkit-backdrop-filter: blur(3px);
    backdrop-filter: blur(3px);
    padding: 0.5rem;
    padding-top: 6vh;
}
#servList > ul
{
    display: flex;
    list-style: none;
    text-shadow:  2px 2px 0px black;
    justify-content: space-around;
    margin-top: 35vh;
}
#servList > ul > li > h1 > a
{
    background-color: rgba(60, 86, 97, 0.5);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(20px);
    text-decoration: none;
    padding: 0.5rem;
    color: white;
    border: 3px solid lightskyblue;
    border-radius: 1rem;
}
#servList > ul > li > h1 > a:hover
{
    color: lightskyblue;
}

footer
{
    background-color: black;
    width: 100%;
    padding-top: 0.4rem;
    padding-bottom: 1rem;
    color: white;
    display: flex;
    justify-content: space-between;
    font-size: small;
    padding-left: 2rem;
    padding-right: 2rem;
    position: fixed;
    border-top-left-radius: 1rem;
    border-top-right-radius: 1rem;
    bottom: 0;
    z-index: 997;
}
#imprintLink:hover
{
    color: lightskyblue;
    cursor: pointer;
}
#contactForm
{
    margin-left: 1rem;
}
#contactForm:hover
{
    color: lightskyblue;
    cursor: pointer;
}
#footerLinks
{
    display: flex;
    justify-content: space-between;
}

#fullpage
{
    background-color: rgba(60, 86, 97, 0.8);
    -webkit-backdrop-filter: blur(3px);
    backdrop-filter: blur(3px);
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    justify-content: center;
    align-items: center;
    z-index: 998;
}
#imprint
{
    color: white;
    padding: 2rem;
    height: 450px;
    overflow: scroll;
    z-index: 999;
}
#imprint > p
{
    text-shadow:  1px 1px 0px black;
}

#contact
{
    background-color: white;
    width: 40%;
    /* height: 40vh; */
    height: auto;
    border: 2px solid lightskyblue;
    border-radius: 1rem;
    text-align: center;
    position: relative;
    z-index: 999;
}
#contact > #messageForm
{
    margin-top: 0.5rem;
}
#close
{
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
}
#close:hover
{
    cursor: pointer;
    color: red;
}
#closeImprint
{
    text-align: right;
}
#closeImprint:hover
{
    cursor: pointer;
    color: red;
}

#important
{
    color: red;
    margin-bottom: 0;
    padding-bottom: 0;
}

@media all and (max-width: 735px)
{
    #businessCard
    {
        padding: 0;
        display: flex;
        flex-flow: column;
    }
    #businessCard img
    {
        margin-top: 2rem;
        margin-left: auto;
        margin-right: auto;
        height: 40vh;
    }
    #myInfo
    {
        margin-top: 2rem;
        margin-left: 1rem;
        margin-right: 1rem;
        max-width: 100vw;
        font-size: x-small;
    }
    #verticalLine
    {
        display: none;
    }
    #servList
    {
        padding-top: 20vh;
    }
    #servList > ul
    {
        display: initial;
    }
    #servList > ul > li
    {
        margin-bottom: 2rem;
    }
}