    /* BODY CSS BY ME*/

    body 
    { 
        margin-left: 100px;
        margin-right: 100px;
        margin-top: 5px;
        margin-bottom: 5px;
        font-family: "Montserrat", sans-serif;
        font-weight: 400;
        font-style: normal;
        background-color: #e6e6e6;
    }
    
        /* H1 CSS BY ME*/
    
    h1 {
        text-align: left;
    }
    
        /* H3 CSS BY ME*/
    
    h3 {
        padding: 2%;
        
    }
    /* class CSS BY ME*/
    .drone_type {
        margin-left: 10%;
    }
    
        /* HEADER CSS BY ME*/
    
    header {
        text-align: center;
        background-color: #e6e6e6;
    }
        /* DIV CSS BY ME*/
        div {
            border-left: 50px;
            border-right: 50px;
            border-top: 20px;
            border-bottom: 20px
        }

        /* nav and a styled with help of this video url(https://www.youtube.com/watch?v%3DPwWHL3RyQgk%26t%3D400s)*/

    nav {
        display: flex;
        justify-content: center;
        justify-content: space-evenly;
    }

    a {
        font-family: "Montserrat", sans-serif;
        font-weight: 700;
        text-decoration: none;
        transition: all 0.3s ease;
        margin-top: 20px;
        color: white;
        font-size: 20px;
    }
    /* class CSS BY ME*/
    .drones_right {
        margin-left: 10%;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        width: 80%;
        border: 1px solid;
        box-shadow: 8px 10px rgba(0, 0, 0, 0.5);
        box-sizing: border-box;
        padding: 10px;
        border-radius: 5px;
    }
    /* class CSS BY ME*/
    .drones_left {
        margin-left: 10%;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        width: 80%;
        border: 1px solid;
        box-shadow: -10px -8px rgba(0, 0, 0, 0.3);
        box-sizing: border-box;
        padding: 10px;
        border-radius: 5px;
    }
    /* class CSS BY ME*/
    .drone_text {
        width: 50%;
    }
    /* class CSS BY ME*/
    .drone_images {
        width: 40%;
        height: 250px;
        object-fit: cover;
        max-width: 100%;
        border: solid 2px;
    }
    /* class CSS BY ME*/
    .submit {
        display: flex;
        font-size: 20px;
        font-weight: 800;
        margin-top: 5px;
        border-radius: 50px;
        background-color: white
}
    /* class CSS BY ME*/
    .submit:hover {
        color: white;
        background-color: #053d42;
        transition: all ease 0.5s;

    }
    /* class for navbar button url(https://www.youtube.com/watch?v%3DPwWHL3RyQgk%26t%3D400s)*/
    .button {
        font-size: 20px;
        font-weight: 800;
        margin-top: 5px;
        padding: 5px;
        border-radius: 50px;
        background-color: #0b95a2;
        font-family: "Montserrat", sans-serif;
        font-weight: 700;
        text-decoration: none;
        transition: all 0.3s ease;
        margin-top: 10px;
        color: white;
    }
    .button:hover {
        color: white;
        background-color: #086068;
        cursor: pointer;
    }

    button {
        font-size: 20px;
        font-weight: 800;
        margin-top: 5px;
        border-radius: 50px;
        background-color: #0b95a2;
    }

    .link {
        color: #086068;
    }

        /* VIDEO CSS BY ME*/
    
    #video {
        max-width: 100%;
        width: 80%;
        margin-left: 10%;
        margin-bottom: 20px;
        border-radius: 2%;
    }
    
        /*THOSE PSEUDO CLASSES I TRIED TO WRITE MYSELF BUT FAILED I HAD TO SUPPORT MYSELF WITH CHAT GPT OTHERWISE DID NOT WORK*/
        /* COLORS ADDED BY ME*/
    
    button:hover {
        color: white;
        background-color: #086068;
        cursor: pointer;
    }

    a:active {
        color: #0b95a2;
      }
    
    a:hover {
        color: #0b95a2;
      }
    
    
        /* FOOTER CSS BY ME*/
    
    footer {

        background-color: #086068;
        color: white;
        text-align: center;
        font-weight: 700;
        border-radius: 5px;
        position: sticky;
        border-top: 20px;
    }

    .icon {
        padding-top: 10px;
    }
    span {
        font-size: 20px;
    }
        /* HEADER_PHOTO CLASS CSS BY ME*/
    
    .header_photo {
        width: 1215px;
        height: 500px;
        max-width: 100%;
    }
    .logo {
        max-width: 100%;
    }

    .gallery {
        margin-left: 10%;
    }
        /* THE id CSS BY ME*/
    
    #the {
        text-align: left;
    }
    
        /* IMG CSS BY ME*/
    
    img {
        border-radius: 5px;
    }
    
        /* MAP id CSS BY ME*/
    
    #map {
        width: 100%;
        margin-left: 0px;
        margin-right: 10px;
        margin-bottom: 20px;
        border-radius: 2%;
    }
    
        /* FORM CLASS CSS BY ME*/
    
    .form {
        max-width: 100%;
        width: 80%;
        margin-right: 20%;
        margin-left: 8%;
        padding: 20px;
        border-radius: 20px;
        background-color: #086068;
        margin-bottom: 20px;
        color: white;
    }

/* Address class and atribute as well as class p, all written BY ME*/

    .address {
        max-width: 100%;
        width: 80%;
        margin-right: 20%;
        margin-left: 8%;
        padding: 20px;
        border-radius: 20px;
        background-color: #086068;
        margin-bottom: 20px;
        color: white;
        text-align: center;
        

    }

    address {
        
        font-weight: 700;
        font-size: 20px;
        font-style: italic;
        
    }

    .p {
        font-size: 14px;
    }
    
        /* LABEL CSS BY ME*/
    
    label {
        font-weight: bold;
        display: block;
        margin-bottom: 5px;
    }
    
        /* ALL INPUT FOR CONTACT FORM CSS BY ME*/
    
    input[type="text"] {
        width: 100%;
        padding: 10px;
        margin-bottom: 20px;
        border: 1px solid #ffffff;
        border-radius: 2px;
        box-sizing: border-box;
    }
    
    input[type="email"] {
        width: 100%;
        padding: 10px;
        margin-bottom: 20px;
        border: 1px solid #ffffff;
        border-radius: 2px;
        box-sizing: border-box;
    }
    
    input[type="name"] {
        width: 100%;
        padding: 10px;
        margin-bottom: 20px;
        border: 1px solid #ffffff;
        border-radius: 2px;
        box-sizing: border-box;
    }

    input[type="tel"] {
        width: 100%;
        padding: 10px;
        margin-bottom: 20px;
        border: 1px solid #ffffff;
        border-radius: 2px;
        box-sizing: border-box;
    }
        /* TEXTAREA CSS BY ME*/
    
    textarea {
        width: 100%;
        padding: 10px;
        margin-bottom: 20px;
        border: 1px solid #ffffff;
        border-radius: 2px;
        box-sizing: border-box;
    }
    
        /* INPUT FOR RADIO AND SUBMIT CSS BY ME*/
    
    input[type="radio"] {
        margin-right: 10px;
        background-color: #053d42;
    }
    
    input[type="submit"] {
        background-color: #e6e6e6;
        color: black;
        border-radius: 2px;
    }
/* CSS adapted from tutorial video on Youtube url(https://www.youtube.com/watch?v%3DMcPdzhLRzCg)*/
    .container {
        padding: 2rem;
    }

    .slider-wrapper {
        position: relative;
        max-width: 80%;
        margin: 0 auto;
    }
  
    .slider {
        display: flex;
        aspect-ratio: 20 / 11;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        box-shadow: 0 1.5rem 3rem -0.75rem hsla(0, 0%, 0%, 0.25);
        border-radius: 0.5rem;
        scrollbar-width: none;
    }

     .slider img {
        max-width: 100%;
        flex: 1 0 100%;
        scroll-snap-align: start;
        object-fit: cover;
     }

     .slider-nav {
        display: flex;
        column-gap: 1rem;
        position: absolute;
        bottom: 1.25rem;
        left: 50%;
        transform: translateX(-50%);
        z-index: 1;
     }

     .slider-nav a {
        width: 50px;
        height: 10px;
        border-radius: 50px;
        background-color: #ffffff;
        opacity: 0.7;
        transition: opacity ease 250ms;
     }

     .slider-nav a:hover {
        opacity: 1;
     }

     .slider::-webkit-scrollbar {
        display: none;
     }
         
        /*I WAS WATCHING YOUTUBE VIDEOS ABOUT IT  TRYING TO FIGURE IT OUT A QUICK FIX FOR ALL OF THE ABOVE CSS TO MAKE IT ADJUSTABLE FOR SMALLER SCREENS*/
        /* I ALSO CHECKED WHAT TYPE OF SCREENS ARE MOST COMMON SO SET MAX 480px FOR MOBILE AND 768px FOR TABLET DEVICES*/
        /* ALL MEDIA CSS WRITTEN AND ADJUSTED BY ME*/
    
    @media (max-width: 768px) {
    
        body {
            margin-left: 20px;
            margin-right: 20px;
        }
    
        nav {
            font-size: 20px;
        }
    
        h1 {
            text-align: left;
        }

        h3 {
            padding: 2%;
        }
    
        a   { 
            font-size: 18px;
            font-weight: 700;
        }

        button {
            font-size: 18px;
        }
    
        nav {
            display: flex;
            flex-direction: column;
            justify-content: space-evenly;
            font-size: 16px;
            text-align: center;
        }
        
        .form {
            width: 80%;
        }
        
        .address {
            width: 80%;
        }
        
        .button {
            font-size: 16px;
        }

        .container {
            width: 90%;
        }
    
        #video {
            width: 90%;
            margin-left: 30px;
        }
    
        .header_photo {
            height: 300px;
        }

        .drones_right {
        
            flex-direction: column;        
            }
        
            .drone_images {
                width:100%  ;
                align-self: center;
            }

            .drones_left {
        
                flex-direction: column;        
                }

                .drone_text {
                    width: 80%;
                }
    }
    
    @media (max-width: 480px) {
        body {
            margin-left: 10px;
            margin-right: 10px;
            margin-top: 5px;
        }
    
        h1 {
            text-align: left;
        }
    
        h3 {
            padding: 2%;
        }
    
        a   { 
            font-size: 16px;
            font-weight: 700;
        }

        .button {
            font-size: 18px;
        }
    
        nav {
            display: flex;
            flex-direction: column;
            justify-content: space-evenly;
            font-size: 13px;
            text-align: center;
        }
    
        .form {
                width: 80%;
                margin: 15px;
                padding: 20px;
                margin-left: 10px;
                max-width: 100%;
    
        }

        .container {
            width: 90%;
        }

        .address {
        width: 80%;
        margin-left: 10px;
        padding: 20px;
        }
        
        #video {
            width: 100%;
            margin-left: 0px;
        }
    
        .header_photo {
            width: 100%;
            height: auto;
        }
    
        footer {
            display: flex;
            flex-direction: column;
            justify-content: center;
            font-size: 14px;
            width: 100%;
        }

        .slider-nav a {
            width: 25px;
            height: 8px
        }

        .container {
            max-width: 100%;
            margin-right: 20px;
        }

        section.container {
            margin-left: -1rem;
        }
        
        .drones_right {
        
            flex-direction: column;        
            }
        
            .drone_images {
                width:100%  ;
                align-self: center;
            }

            .drones_left {
        
                flex-direction: column;        
                }

                .drone_text {
                    width: 40%;
                }

    .drone_text {
        width: 90%;
    }
}
