        @font-face {
            font-family: Prompt;
            src: url("/fonts/Prompt-Regular.ttf");
        }
        
        *,
        *::before,
        *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        html {
            scroll-behavior: smooth;
        }
        /*                                                           Menu                                            */
        
        #top {
            display: none;
            position: fixed;
            bottom: 70px;
            right: 8px;
            z-index: 99;
            border: none;
            outline: none;
            background-color: #efc792;
            color: white;
            cursor: pointer;
            padding: 15px;
            border-radius: 10px;
            font-size: 18px;
        }
        
        #top:hover {
            background-color: #db8d45;
        }
        
        nav {
            display: flex;
            justify-content: flex-end;
            align-items: center;
            min-height: 8vh;
            z-index: 1;
        }
        
        .nav-links {
            display: flex;
            justify-content: space-around;
            width: 30%;
            letter-spacing: 5px;
        }
        
        .nav-links li {
            list-style: none;
        }
        
        .nav-links a {
            color: #ffffff;
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 3px;
            font-size: 16px;
        }
        
        .burger {
            display: none;
            cursor: pointer;
        }
        
        .burger div {
            width: 25px;
            height: 5px;
            background-color: rgb(226, 226, 226);
            margin: 5px;
            transition: all 0.3s ease;
        }
        
        @media screen and (max-width:1024px) {
            .nav-links {
                width: 60%;
            }
        }
        
        @media screen and (max-width:768px) {
            body {
                overflow-x: hidden;
            }
            .nav-links {
                position: absolute;
                right: 0px;
                height: 92vh;
                top: 8vh;
                background-color: #0a3848;
                opacity: 0.65;
                border-radius: 15px;
                color: #ffffff;
                display: flex;
                flex-direction: column;
                align-items: center;
                width: 50%;
                height: 50%;
                transform: translateX(100%);
                transition: transform 0.5s ease-in;
            }
            .nav-links li {
                opacity: 1;
            }
            .burger {
                display: block;
            }
        }
        
        .nav-active {
            transform: translateX(0%);
        }
        
        @keyframes navLinkFade {
            from {
                opacity: 0;
                transform: translateX(50px);
            }
            to {
                opacity: 1;
                transform: translateX(0px);
            }
        }
        
        .toggle .line1 {
            transform: rotate(-45deg) translate(-5px, 6px);
        }
        
        .toggle .line2 {
            opacity: 0;
        }
        
        .toggle .line3 {
            transform: rotate(45deg) translate(-5px, -6px);
        }
        
        section {
            width: 100%;
            min-height: 1000px;
        }
        /*                                                           Home page                                            */
        
        #Home {
            /* background-image: url("images/lillusztration_home.jpg"); */
            width: 100%;
            height: 100%;
            position: relative;
            opacity: 1;
            overflow: hidden;
            background-position: center center;
            background-repeat: no-repeat;
            background-size: cover;
            min-height: 850px;
            animation-name: animate;
            animation-direction: alternate;
            animation-duration: 30s;
            animation-fill-mode: forwards;
            animation-iteration-count: infinite;
            animation-play-state: running;
            animation-timing-function: linear
        }
        
        @keyframes animate {
            0%,
            100% {
                background-image: url("images/lillusztration_home.jpg");
            }
            12.5% {
                background-image: url("images/lillusztration_home.jpg");
            }
            25% {
                background-image: url("images/lillusztration_home2.jpg");
            }
            37.5% {
                background-image: url("images/lillusztration_home2.jpg");
            }
            50% {
                background-image: url("images/lillusztration_home3.jpg");
            }
            62.5% {
                background-image: url("images/lillusztration_home3.jpg");
            }
            75% {
                background-image: url("images/lillusztration_home4.jpg");
            }
            87.5% {
                background-image: url("images/lillusztration_home4.jpg");
            }
        }
        /*                                                           About page                                            */
        
        #About {
            display: grid;
            grid-template-columns: 2fr 1fr;
            grid-template-rows: 1fr 0.5fr repeat(3, 1fr) 0.5fr;
            grid-column-gap: 20px;
            grid-row-gap: 20px;
            padding: 3%;
            color: #0a3848;
            text-align: justify;
            max-width: 1140px;
            margin: auto;
            font-family: Prompt;
        }
        
        @media screen and (max-width: 880px) {
            #About {
                grid-template-columns: 2fr;
            }
        }
        
        .nev {
            margin: 3% auto;
        }
        
        .div1 {
            grid-area: 1 / 1 / 2 / 3;
            font-size: 17px;
        }
        
        .motto {
            grid-area: 2 / 1 / 3 / 2;
            color: #0a3848;
            font-family: Tahoma, sans-serif;
            font-size: 20px;
            width: 60%;
            margin: 3% auto;
        }
        
        .motto p {
            margin-bottom: 0;
            text-transform: uppercase;
        }
        
        .motto p::before,
        .motto p::after {
            content: "“";
            font-family: Georgia;
            font-size: 8rem;
            margin: -2rem 0 0 -4rem;
            position: absolute;
            opacity: 0.5;
        }
        
        .motto p::after {
            content: "”";
            margin: -1rem -1rem 0 0;
        }
        
        .motto cite {
            font-size: 1.5rem;
        }
        
        .portrait {
            grid-area: 2 / 2 / 6 / 3;
            background-image: url("images/Lilla.jpg");
            background-position: top center;
            background-repeat: no-repeat;
            background-size: cover;
        }
        
        .div4 {
            grid-area: 3 / 1 / 6 / 2;
            font-size: 17px;
        }
        
        .div4 .p1 {
            margin-bottom: 40px;
        }
        
        .div5 {
            grid-area: 6 / 1 / 7 / 3;
            font-size: 17px;
        }
        /*                                                           Work page                                            */
        
        #Work {
            background-color: #0a3848;
            padding-top: 15px;
            padding-bottom: 15px;
        }
        
        .container {
            width: 100%;
            max-width: 120rem;
            margin: auto;
            padding: 3%;
        }
        
        .image-gallery {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr 1fr;
            grid-template-rows: auto;
            grid-gap: 1.5rem;
            grid-template-areas: 'img-1 img-2 img-3 img-3' 'img-1 img-4 img-5 img-6' 'img-7 img-7 img-8 img-6';
        }
        
        .image-gallery a {
            width: 100%;
            height: 25rem;
            background-position: center;
            background-repeat: no-repeat;
            background-size: cover;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
        }
        
        .image-gallery a i {
            color: rgba(255, 255, 255, .6);
            font-size: 3rem;
            position: relative;
            z-index: 100;
            padding: 1rem 3 rem;
            border: 2px solid rgba(255, 255, 255, .6);
            border-radius: .4rem;
            opacity: 0;
            transition: opacity .5s;
        }
        
        .image-gallery a::before {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            background-color: rgba(0, 0, 0, .8);
            opacity: 0;
            transition: opacity .5s;
        }
        
        .image-gallery a:hover i,
        .image-gallery a:hover::before {
            opacity: 1;
        }
        
        .img-1 {
            grid-area: img-1;
            min-height: 51.5rem;
            background-image: url("images/img-1.JPG")
        }
        
        .img-2 {
            grid-area: img-2;
            background-image: url("images/img-2.JPG")
        }
        
        .img-3 {
            grid-area: img-3;
            background-image: url("images/img-3.JPG")
        }
        
        .img-4 {
            grid-area: img-4;
            background-image: url("images/img-4.JPG")
        }
        
        .img-5 {
            grid-area: img-5;
            background-image: url("images/img-5.JPG")
        }
        
        .img-6 {
            grid-area: img-6;
            min-height: 51.5rem;
            background-image: url("images/img-6.JPG")
        }
        
        .img-7 {
            grid-area: img-7;
            background-image: url("images/img-7.JPG")
        }
        
        .img-8 {
            grid-area: img-8;
            background-image: url("images/img-8.JPG")
        }
        
        @media screen and (max-width: 900px) {
            .image-gallery {
                grid-template-areas: 'img-1 img-1 img-2 img-2' 'img-1 img-1 img-3 img-3' 'img-4 img-4 img-5 img-5' 'img-6 img-7 img-7 img-7' 'img-8 img-8 img-8 img-8';
            }
            .image-gallery a {
                height: 20rem;
            }
            .img-1 {
                min-height: 41.5rem;
            }
            .img-6 {
                min-height: 20rem;
            }
        }
        
        @media screen and (max-width: 600px) {
            .image-gallery {
                grid-template-areas: 'img-1 img-1 img-1 img-1' 'img-2 img-2 img-2 img-2' 'img-3 img-3 img-3 img-3' 'img-4 img-4 img-4 img-4' 'img-5 img-5 img-5 img-5' 'img-6 img-6 img-6 img-6' 'img-7 img-7 img-7 img-7' 'img-8 img-8 img-8 img-8';
            }
            .image-gallery a,
            .img-1,
            .img-6 {
                min-height: 30rem;
                height: 30rem;
            }
        }
        /*                                                           Contact page                                            */
        
        #Contact {
            position: relative;
            width: 100%;
            height: 90%;
            min-height: 740px;
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            grid-template-rows: repeat(5, 1fr);
            grid-column-gap: 0px;
            grid-row-gap: 0px;
            background-image: url("/images/contact-bg.jpg");
            background-size: cover;
        }
        
        #Contact:after {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            left: 0;
            top: 0;
            background: #fff;
            background-size: cover;
            filter: blur(2px);
            z-index: -1;
        }
        
        .contact-box {
            max-width: 850px;
            display: grid;
            grid-area: 2 / 2 / 5 / 5;
            grid-template-columns: repeat(2, 1fr);
            justify-content: center;
            align-items: center;
            text-align: center;
            background-color: #fff;
            box-shadow: 0px 0px 19px 5px #6b8c8e;
            font-family: Prompt;
        }
        
        .social {
            display: flex;
            flex-direction: column;
            grid-area: 3 / 5 / 5 / 6;
            height: 60%;
            width: 60%;
            min-width: 80px;
            min-height: 60px;
            align-items: flex-end;
            place-content: right;
            font-family: 'Poppins', sans-serif;
        }
        
        .social .button {
            display: inline-block;
            height: 60px;
            width: 60px;
            margin: 0 5px;
            overflow: hidden;
            background: #fff;
            border-radius: 50px;
            cursor: pointer;
            box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease-out;
        }
        
        .social .button:hover {
            width: 200px;
        }
        
        .social .button .icon {
            display: inline-block;
            height: 60px;
            width: 60px;
            text-align: center;
            border-radius: 50px;
            box-sizing: border-box;
            line-height: 60px;
            transition: all 0.3s ease-out;
        }
        
        .social .button:nth-child(1):hover .icon {
            background: #4267B2;
        }
        
        .social .button:nth-child(2):hover .icon {
            background: #BD081C;
        }
        
        .social .button:nth-child(3):hover .icon {
            background: #E1306C;
        }
        
        .social .button .icon i {
            font-size: 25px;
            line-height: 60px;
            transition: all 0.3s ease-out;
        }
        
        .social .button:hover .icon i {
            color: #fff;
        }
        
        .social .button span {
            font-size: 20px;
            font-weight: 500;
            line-height: 60px;
            margin-left: 10px;
            transition: all 0.3s ease-out;
        }
        
        .social .button:nth-child(1) span {
            color: #4267B2;
        }
        
        .social .button:nth-child(2) span {
            color: #BD081C;
        }
        
        .social .button:nth-child(3) span {
            color: #E1306C;
        }
        
        .left {
            background: url("images/lillusztration-contact.jpg") no-repeat center;
            background-size: cover;
            height: 100%;
        }
        
        .right {
            padding: 25px 40px;
            font-family: Prompt;
        }
        
        h2 {
            position: relative;
            padding: 0 0 10px;
            margin-bottom: 10px;
            color: #0a3848;
        }
        
        h2:after {
            content: '';
            position: absolute;
            left: 50%;
            bottom: 0;
            transform: translateX(-50%);
            height: 4px;
            width: 50px;
            border-radius: 2px;
            background-color: #efc792;
        }
        
        .field {
            width: 100%;
            border: 2px solid rgba(0, 0, 0, 0);
            outline: none;
            background-color: rgba(230, 230, 230, 0.6);
            padding: 0.5rem 1rem;
            font-size: 1.1rem;
            margin-bottom: 22px;
            transition: .3s;
        }
        
        .field:hover {
            background-color: #efc792;
        }
        
        textarea {
            min-height: 150px;
        }
        
        .btn {
            width: 100%;
            padding: 0.5rem 1rem;
            background-color: #efc792;
            color: #fff;
            font-size: 1.1rem;
            border: none;
            outline: none;
            cursor: pointer;
            transition: .3s;
        }
        
        .btn:hover {
            background-color: #db8d45;
        }
        
        .field:focus {
            border: 2px solid rgba(30, 85, 250, 0.47);
            background-color: #fff;
        }
        
        @media screen and (max-width: 880px) {
            .contact-box {
                grid-template-columns: 1fr;
            }
            .left {
                height: 200px;
            }
        }
        
        #copy {
            grid-area: 5 / 3 / 6 / 4;
            display: flex;
            align-items: flex-end;
            place-content: bottom;
            width: 100% auto;
            margin-bottom: 3% auto;
        }