body {
    background-color: aquamarine;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh; 
}

.work {
    display: flex;
    align-items: center; 
    gap: 10px; 
    padding: 10px;
}

.work h1 {
    font-size: 50px;
    margin: 0;
    font-weight: bolder;
}

h2 {
    font-weight: bolder;
}

.dropdown {
    justify-content: space-between;
    align-items: center;
    border-radius: 5px;
    margin-left: 20px; 
    flex-grow: 1; /* Pushes the footer to the bottom */
}

.dropdown input[type='checkbox'] {
    margin-right: 19px; 
}

.list {
    display: flex;
    align-items: center;
    gap: 10px;
}

.list input[type="checkbox"] {
    width: 20px; 
    height: 20px; 
    margin-right: 10px; 
}

/* foor footers */
.footer {
    display: flex;
    justify-content: space-between; 
    align-items: center;
    max-width: 100vw;
    width: 100%;
    height: 45px;
    padding: 10px;
    border-radius: 10px 10px 0 0;
    background-color: rgb(138, 165, 215);
    position: fixed;
    bottom: 0;
}

.footer a {
    display: flex;
    align-items: center;
}

/* @media (max-width: 768px) { 
    .work h1 {
        font-size: 30px;
    }

    .footer {
        height: 50px;
        padding: 5px;
    }

    .footer a img {
        width: 40px;
        height: 40px;
    }
} */
