@import url('https://fonts.googleapis.com/css2?family=Anek+Devanagari:wdth,wght@86,100..800&family=New+Amsterdam&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

section {
padding:500px;
width: 100%;
background-size: 100px 100px;
background: url(ZEUS1.jpg)no-repeat;
background-size:auto;
background-attachment: fixed;
background-position: center; 
background-color: rgb(30, 129, 175);
}

header{
    position: relative;
    top: 0;
    width: 100%;
    padding: 30px 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;

}

header .LOGO{
    position: relative;
    color: rgb(249, 249, 249);
    font-size: 25px;
    text-decoration: none;
    text-transform:none;
    font-weight: 300;
    letter-spacing: 1px;
    

}

header .navigation a{
    position:static;
    color: #faf9f9;
    font-size: 25px;
    background-color: rgb(30, 129, 175);
    font-weight: 22px;
    letter-spacing: 1px;
    padding: 3px 10px;
    border-radius: 10px;
    transition: 0.5;
    transition-property: all;
}
header .navigation a:not(:last-child){
    margin-right: 40px;
    
}
header .navigation a:hover{
    background:rgb(30, 129, 175);
}
