html {
    height: 100%;
    font-size: 100%;
}



@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


body {
   margin: 0;
   overflow-x: hidden;

}

header {
    height: 600px;
    max-width: 2000px;
    width: 100%;

    background-image: url(images/24389.jpg);
    background-position: center;
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    gap: 200px;

    
}

.logo {
    width: 220px;
    height: 200px;
    margin-left: 40px;
    margin-top: 40px;
}

img {

width: 200px;
height: 110px;

}

h1 {

font-size: 7rem;
font-family: "Inter", sans-serif;
font-weight: 700;
color: white;
margin-left: 3rem;
animation: slideInLeft;
animation-duration: 0.5s;
animation-timing-function: ease-in;
animation-delay: 0s;
animation-iteration-count: 1;
animation-direction: normal;
animation-fill-mode: both;
transform: translateY(-150px);

}


nav {
    max-width: 2000px;
    min-height: 380px;
    width: 100%;
    padding-left: 40px;
    padding-top: 40px;

}

p1 {
    font-size: 1.7rem;
    font-family: "Inter", sans-serif;
    margin-top: 30px;
 
}

.motion-graphics-paragraph {

    max-width: 90%;
    min-height: 200px;
    padding-left: 4rem;
    padding-top: 4rem;
    padding-bottom: 4rem;
}

footer {

    min-height: 100px;
    max-width: 2000px;
    width: 100%;
    background-color: rgb(11, 31, 122);
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 20px;
    padding-left: 3rem;
    padding-right: 3rem;
}


 
 

 .button {
    width: 150px;
    min-height: 50px;
 
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid rgb(255, 255, 255);
    border-radius: 8px;
        box-shadow: 10px 10px 20px rgba(36, 36, 36, 0.616);

            transition: transform, background-color 0.3s, color 0.3s;
    transition-duration: 0.3s ;
    transition-property: ease;
    transition-delay: 0s;

 }


   .button:hover {

               transform: translateY(-15px);
    cursor: pointer; 
       background-color: var(--clr-accent);
    color: var(--clr-light);
  }
 a {

font-size: 18px;
color: rgb(255, 255, 255);
font-family: "Inter", sans-serif;
font-weight: 700;
text-decoration: none;

 }

 a:hover {
    
    opacity: 80%;
    cursor: pointer;
}

@keyframes slideInLeft {

    from {
        tranform: translateY(-300px),
    }

    to {

        transform: translate(0);
    }
}

@media (min-width: 270px) and (max-width: 470px) {

    header{
        width: 100%;
    }

    h1 {

        font-size: 3.4rem;
        margin-left: 1.8rem;
    }

    p1 {
        font-size: 1rem;
    }

    .motion-graphics-paragraph {
        padding-left: 2rem;
    }

    footer {
        padding-left: 2rem;
    }
}

    @media (min-width: 480px) and (max-width: 767px) {
        /* Styles for large mobile devices */

    header{
        width: 100%;
    }

    h1 {
        font-size: 3.8rem;
        margin-left: 2.4rem;
    }

    p1 {
        font-size: 1.3rem;
    }

        .motion-graphics-paragraph {
        padding-left: 2.8rem;
    }

        footer {
        padding-left: 2.8rem;
    }


    }


        @media (min-width: 768px) and (max-width: 899px) {
        /* Styles for tablet in portrait mode */
        
    header{
        width: 100%;
    }

    h1 {
        font-size: 4.4rem;
    }

    p1 {
        font-size: 1.6rem;
    }
    }


    @media (min-width: 1024px) and (max-width: 1279px) {
        /* Styles for small desktop screens */
        
    header{
        width: 100%;
    }

        h1 {
        font-size: 5rem;
    }
    }


       @media (min-width: 1280px) and (max-width: 1439px) {
        /* Styles for medium desktop screens */
        
    header{
        width: 100%;
    }
    }

        @media (min-width: 1440px) {
        /* Styles for large desktop screens */
        
    header{
        width: 100%;
    }
    

    }