@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;
}

#drawings {
    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 .project {
    font-size: max(1.25vw, 25px);
    font-weight: 500px;
    display: inline-block;
    align-content: center;
    align-items: center;
    justify-content: space-evenly;
}

content .slideshow-container2 {
    max-width: 500px;
    position: relative;
    margin: auto;
    padding-inline: 10px;
}

content .slideshow-container {
    max-width: 700px;
    position: relative;
    margin: auto;
    padding-inline: 10px;
}

content .mySlides1 {
    display: none;
    padding-bottom: 10px;
}

content .mySlides2 {
    display: none;
    padding-bottom: 10px;
}

content .mySlides3 {
    display: none;
    padding-bottom: 10px;
}

content .prev, .next {
    cursor: pointer;
    position: absolute;
    top: 40%;
    width: auto;
    padding: 16px;
    color: white;
    font-weight: bold;
    font-size: max(2vw, 16px);
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
}

content .next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

content .prev {
    left: 0;
    border-radius:  3px 0 0 3px;
}

content .prev:hover, .next:hover {
    background-color: black;
}

content .text {
    font-size: max-width(1vw, 15px);
    padding: 8px 12px;
    position: absolute;
    bottom: 30px;
    width: 100%;
    text-align: center;
}

content .dot1 {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: white;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}

content .active, .dot1:hover {
    background-color: #717171;
}

content .dot2 {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: white;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}

content .active, .dot2:hover {
    background-color: #717171;
}

content .dot3 {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: white;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}

content .active, .dot3:hover {
    background-color: #717171;
}

content .dot4 {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: white;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}

content .active, .dot4:hover {
    background-color: #717171;
}
  
  /* Fading animation */
content .fade {
    animation-name: fade;
    animation-duration: 1.5s;
}
  
@keyframes fade {
    from {opacity: .4}
    to {opacity: 1}
}

content .description {
    font-size: max(1vw, 18px);
    margin: auto;
    line-height: 20px;
    padding-bottom: 30px;
}