@viewport {
    width: device-width ;
    zoom: 1.0 ;
}

html, body {
    height: 100%;
    width: 100%;
    min-height: 100%;
    margin: 0;
    padding: 0;
    font-family: Bahnschrift;
    overflow-x: hidden;
    scroll-behavior: smooth !important;
}

#contact {
    scroll-behavior: smooth !important;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    position: absolute;
    background-image: linear-gradient(black, navy);
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    overflow-y: scroll;
    overflow-x: hidden;
}

nav {
    color: white;
    width: 100vw;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    transition: background 0.5s;
}

nav .logo {
    display: flex;
    align-items: center;
    font-size: max(1.5vw, 15px);
    font-weight: 600;
}

nav .logo img {
    margin-left: 10vw;
    width: max(1.5vw, 50px);
    height: max(1.5vw, 50px);
}

nav .links ul {
    margin-right: 100px;
    margin-left: 50px;
}

nav .links ul li {
    text-align: right;
    display: inline-block;
    list-style: none;
    margin-left: 3vw;
}

nav .links ul li a {
    font-weight: 400;
    text-align: right;
    color: white;
    font-size: max(1vw, 12px);
    text-decoration: none;
    display: inline-block;
    margin-right: 1vw;
}
nav:hover {
    background-image:linear-gradient(white 80%, #000000 100%);
}

nav:hover .logo {
    color: navy;
}

nav:hover .links ul li a {
    color: navy;
}

nav .links ul li a:hover {
    color: indigo;
}

#content {
    color: white;
    width: 100%;
    display: grid;
    justify-content: center;
    text-align: center;
    line-height: 0.5;
}

content .heading {
    font-size: max(4vw, 20px);
    justify-content: center;
    font-weight: 600;
}

content .email {
    font-weight: 400;
    font-size: max(1vw, 20px);
    display: inline-block;
    align-content: center;
    align-items: center;
    justify-content: space-evenly;
}

content .construction {
    align-content: center;
    align-items: center;
    justify-content: space-evenly;
    padding: 1vw;
    border: 5px solid yellow;
    font-weight: 400;
    font-size: max(1.5vw, 15px);
}

content .construction img {
    align-content: center;
    align-items: center;
    justify-content: space-evenly;
    width: max(18vw, 200px);
    height: max(18vw, 200px);
}


