/* General Styles */
body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 100vh;
    background-color: #010b28;
    color: #032363;
}
nav img{
    height: 50px;
    width: 30px;
    position: absolute;
    margin-left: 230px;
    
 }
/* Header Styles */
header {
    background-color: #d5defa;
    padding: 20px;
    color: #021756;
}

header nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    
}

header nav h1 {
    margin: 0;
}

header nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
}

header nav ul li a {
    /* background-color: #bab9f0; */
    /* margin: 2px; */
    padding: 6px 10px 6px 10px;
    border-radius: 8px;
    border-color: #bbc6e8;
    color: #010b28;
    text-decoration: none;
    font-weight: 500;
    border-style:groove;
}
header nav ul li a:hover{
    color:#d5defa;
    background-color: #021756;
    box-shadow: 8px 5px 10px rgba(57, 59, 121, 0.651);
}

/* Main Container Styles */
.container {
    background-color: #001246;
    border-radius: 8px;
    box-shadow: 0px 0px 100px #00030b;
    padding: 20px;
    max-width: 400px;
    width: 100%;
    text-align: center;
    margin: 40px auto;
}

h2 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #ffffff;
    font-family:'Times New Roman', Times, serif;
}

.buttons {
    margin-bottom: 20px;
}
.buttons p{
    color: #ffffff;
    margin-bottom: 25px;
}

button {
    background-color: #d5defa;
    border: none;
    color: #010b28;
    border-style: ridge;
    border-color: #9396a2;
    padding: 10px 20px;
    margin: 15px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #010b28;
    color:#d5defa;
    box-shadow: 8px 5px 10px rgb(0, 0, 0);
}

#subcontainer {
    background-color: #000c2d;
    margin-top: 40px;
    padding: 10px;
    border-radius: 10px;
}

label {
    display: block;
    margin-bottom: 10px;
    font-weight: 500;
    color:#bbccff;
    font-size: 30px;
}

input {
    width: calc(100% - 80px);
    padding: 10px;
    padding-left: 20px;
    margin-bottom: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

input:focus {
    border-color: #d5defa;
    outline: none;
}

/* Button Descriptions */
.button-description {
    font-size: 14px;
    color: #c5c5fe;
    margin: -5px 0 10px 0;
}


/* Notification Styles */
.notification {
    position: fixed;
    top: 100px;
    right: 20px;
    padding: 15px;
    background-color: #d5defa ;
    color: #010b28;
    border-style: double;
    border-color: #1e367d;
    border-radius: 5px;
    box-shadow: 10px 15px 10px rgb(4, 0, 18);
    display: none;
}

.notification.hidden {
    display: none;
}

.notification.visible {
    display: block;
    animation: fadeInOut 3s ease-in-out;
}

@keyframes fadeInOut {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }

    10%,
    90% {
        opacity: 1;
        transform: translateY(0);
    }

    100% {
        opacity: 0;
        transform: translateY(-20px);
    }
}

/* Information Section */
.info {
    max-width: 800px;
    margin: 40px auto;
    padding: 20px;
    background-color: #d5defa;
    border-radius: 8px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.info h3 {
    margin-bottom: 20px;
    font-size: 22px;
    color: #010b28;
}

.info p {
    margin-bottom: 20px;
    color:#010b28;
}

.progress-bar {
    width: 100%;
    background-color: #c5c4c4;
    border-radius: 5px;
    overflow: hidden;
}

.progress {
    width: 50%;
    background-color: #010b28;
    color: #d5defa;
    text-align: center;
    padding: 5px 0;
    border-radius: 5px 0 0 5px;
}

/* Footer Styles */
.footer {
    background-color: #d5defa;
    color: #010b28;
    padding: 20px 0;
    text-align: center;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Social Icons Styles */
.social-icons {
    margin-bottom: 20px;
}

.social-icon {
    margin: 0 10px;
    color: #010b28;
    text-decoration: none;
    font-size: 30px;
}

#fb:hover {
    color: #3b5998;
}
#ig:hover {
    color: #C13584;
}
#x:hover {
    color: #1DA1F2;
}
#li:hover{
    color: #0077B5;
}
#yt:hover{
    color: #FF0000;
}
div #git:hover {
    color: rgb(43, 43, 43);
}


/* Footer Links Styles */
.footer-links {
    list-style:none;
    padding: 0;
    margin-bottom: 20px;
}

.footer-links li {
    display: inline;
    margin: 0 15px;
}

.footer-links a {
    color: #010b28;
    text-decoration: none;
    font-size: 16px;
}

.footer-links a:hover {
    text-decoration: underline;
}

/* Footer Copy */
.footer-copy {
    margin-top: 20px;
    font-size: 14px;
    color: #010b28;
}

/* Responsive Design */
@media (max-width: 600px) {
    body {
    padding: 10px;
    font-size: small;
    }
    nav img{
    height: 30px;
    width: 15px;
    position: absolute;
    margin-left: 185px;
    
 }
 header nav li {
     display: none;

 }

     header nav {
        width: 100%;
        flex-direction: column; /* Stack items in header */
        align-items: flex-start; /* Align items to the start */
    }

    

        .container {
            background-color: #001246;
            border-radius: 8px;
            box-shadow: 0px 0px 50px #00030b;
            padding: 20px;
            max-width: 300px;
            width: 100%;
            text-align: center;
            margin: 20px auto;
            font-size: smaller;
        }
    h2 {
    font-size: 15px;
    margin-bottom: 0px;
    color: #ffffff;
    font-family:'Times New Roman', Times, serif;
    }

    input {
        width: calc(100% - 40px); /* Full-width input */
    }

    button {
        margin: 10px 0; /* Adjust button margin */
    }
    .footer-links li {
        display: block;
        margin: 10px 0;
    }
    .info {
        padding: 10px; /* Adjust padding */
    }
}