@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;700&family=Poppins:wght@400;600;700&display=swap');

*{
    margin: 0px;
    padding: 0px;
    font-family: 'Poppins';

}

body{
    width: 100%;
    height: 651px;
    background-image: linear-gradient(rgb(0, 0, 63), black);
    background-repeat: no-repeat;
    background-size:cover;
    background-attachment: fixed;
}

header{
    display: flex;
    width: 100%;
    height: 50%;
    align-items: center;
    justify-content: center;
    color: #fff;
}

div{
    margin: 0 10px 300px 50px;
    height: 320px;
    width: 18px;
    background-color: red;
}

section{
    height: 50%;
}

h1{
    margin-bottom: 10px;
    font-size: 50px;
}

h2{
    margin: 10px 0;
    font-size: 25px;
}

p{
    font-size: 15px;
    margin-top: 30px;
}

aside{
    display: flex;
    height: 25%;
    justify-content: center;
}

a{
    margin: 70px;
    background-color: #fff;
    padding: 15px;
    height: 25px;
    border-radius: 5px;
    text-decoration: none;
    color: #000;
    font-weight: bold;
}

a:hover{
    background-color: gray;
    color: #fff;
}

footer{
    display: flex;
    justify-content: center;
}

.logo{
    height: 100px;
    width: 150px;
    margin: 0 30px;
}



@media screen and (max-width: 1080px) {
    h1{
        font-size: 30px;
        margin-bottom: 20px;
    }

    h2{
        margin: 10px 0;
        font-size: 20px;
    }
    
    p{
        font-size: 15px;
        margin: 10px 0;
    }

    header{
        margin: 0 20px;
        height: 35%;
    }


    aside{
        height: 13%;
    }

    a{
        margin: 0;
        padding: 10px;
        height: 20px;
        font-size: 10px;
    }

    .logo{
        margin: 0;
        height: 80px;
        width: 120px;
    }

    div{
        height: 275px;
        width: 15px;
    }

    footer{
        margin-bottom:80px ;
    }

}

@media screen and (min-width: 1400px) {
    h1{
        font-size: 80px;
        margin-bottom: 20px;
    }

    h2{
        margin: 10px 0;
        font-size: 30px;
    }
    
    p{
        font-size: 20px;
        margin: 40px 0;
    }

    a{
        margin: 100px 70px;
        padding: 20px;
        height: 30px;
        font-size: 20px;
    }

    .logo{
        height: 120px;
        width: 170px;
        margin: 40px 30px;
    }

    div{
        height: 350px;
    }
}

@media screen and (min-width: 1920px) {
    h1{
        font-size: 100px;
        margin-bottom: 40px;
    }

    h2{
        margin: 10px 0;
        font-size: 40px;
    }
    
    p{
        font-size: 25px;
        margin: 60px 0;
    }

    a{
        margin: 180px 70px;
        padding: 30px;
        height: 30px;
        font-size: 30px;
    }

    .logo{
        height: 240px;
        width: 360px;
        margin: 160px 30px;
    }

    div{
        height: 500px;
        width: 30px;
    }
}

@media screen and (max-width: 964px) {
    h1{
        font-size: 20px;
        margin-bottom: 20px;
    }

    h2{
        margin: 10px 0;
        font-size: 15px;
    }
    
    p{
        font-size: 12px;
        margin: 10px 0;
    }

    header{
        margin: 0 20px;
        height: 35%;
    }


    aside{
        height: 10%;
    }

    a{
        margin: 0;
        padding: 10px;
        height: 15px;
        font-size: 10px;
    }

    .logo{
        margin: 0;
        height: 80px;
        width: 120px;
    }

    div{
        height: 275px;
        width: 15px;
    }

    footer{
        margin-bottom:80px ;
    }

}