@import url('https://fonts.googleapis.com/css2?family=Poetsen+One&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');
/*   font-family: "Poetsen One", sans-serif;
  font-weight: 400;
  font-style: normal; 
  font-family: "Roboto", sans-serif;
  
  */

@import url('https://fonts.googleapis.com/css2?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&display=swap');


:root{
    --Dark_Blue: hsl(234, 12%, 34%);
    --Grayish_Blue: hsl(229, 6%, 66%);
    --Light_Gray: hsl(0, 0%, 98%);

    --Cyan: hsl(180, 62%, 55%);
 

}


*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{


    font-family: "Poppins", sans-serif;
    background-color: var(--Light_Gray);


}

header{
    text-align: center;
    padding: 20px ;
    margin-bottom: 30px;
    background-color: #E6E6FA;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06), 0 0 90px var(--Light_Gray), 0 0 20px rgba(0, 255, 255, 0.4);

}

header h1{
    font-size: 50px;
    font-family: "Poetsen One",sans-serif;
    font-weight: 100;
    font-style: normal;
    color: var(--Cyan);

    text-shadow: 0 0 5px darkblue;
}



header p{
    font-family: "Roboto", sans-serif;
    font-size: 20px;
    font-weight: 700;
}
 
.container{
    padding: 10px 30px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06),0 0 60px var(--Light_Gray),0 0 10px rgba(0, 255, 255, 0.4);

    border-radius: 8px;
    max-width: 800px;
    margin: 0 auto;
   
}

.container p{
    font-size: 22px;
    margin-block-start: 1.5em;
    line-height: 1.6;
}

.gu-link {
    color: var(--Cyan);
    text-decoration: underline;
}

.disclaimer {
    background-color: #ffdddd;
    color: #d8000c;
    padding: 15px;
    border-left: 6px solid #f44336;
    margin-bottom: 20px;
    max-width: 800px;
    margin: 20px auto;
    font-size: 16px;
    text-align: center;
    border-radius: 4px;
}

footer{
    text-align: center;
    background-color: #F5F5DC;
    padding: 20px ;

    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06),0 0 60px var(--Light_Gray),0 0 10px rgba(0, 255, 255, 0.4);



}

a{
    text-decoration: none;

}

a:hover{
    color: rgb(204, 33, 195);
}

.navigation{
    display: flex;
    justify-content: center;
    gap: 20px; /* Space between the links */
    margin-top: 10px;
    

}

.copyright{
    font-family: "Roboto", sans-serif;
    font-size: large;
}
.navigation a{
    color: #007bff; /* Link color */
    font-size: 16px; /* Adjust font size as needed */
    display: flex;
    align-items: center;


}

.navigation a i {
    margin-right: 8; /* Space between icon and text */
    font-size: 22px; /* Adjust icon size if needed */
}

.navigation a:hover {
    color: #0056b3; /* Darker link color on hover */
}

.navigation a i:hover {
    color: #0056b3; /* Darker icon color on hover */
}



/* ===================Responsive media ================= */

@media (max-width: 768px) {
    header h1 {
        font-size: 40px;
    }

    header p {
        font-size: 18px;
    }

    .container {
        padding: 15px;
    }

    .container p {
        font-size: 16px;
    }
}