body{
    background-image:url('/cats.png');
    background-repeat: no-repeat;
    background-size: cover;
    margin: 0px;
    height: 100vh;
    width: 100%;
  height: auto;
}


nav {
    display:flex;
    justify-content:start;
    align-items: center;
    padding: 30px;
    background-color: rgba(199, 184, 184, 0.6);
    justify-content: first baseline;
    border-radius: 1rem;
    
    
}


.home, .gal, .more, .Contact {
    color: black;
    text-decoration: none;
    font-family: "Nunito", sans-serif;
    margin-right: 1em !important;
    font-weight: 500;
    transition: color 0.3s ease;
}


#header-img {
    margin-left: 40px;
    margin-top: 10px;
    height: 100px;
    width: 100px;
    font-size: 40px;
    float: left;
    margin: 0px;
}


form {
    height: auto;
    width: 60%;
    background-color: rgba(172, 170, 170, 0.85);
    margin: auto;
    padding: 25px;
    position: relative;
    top: 3rem;
    border-radius: 1rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1); 
}


input, select {
    padding: 12px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 1rem;
    background-color: #fafafa;
    font-size: 16px;
    transition: all 0.3s ease;
}

input:focus, select:focus {
    border-color: #474747;
    background-color: #fff;
    outline: none;
}

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


.range2 {
    display: flex;
    align-items: center;
    gap: 20px;
}

.gender > p {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.gender {
    display: flex;
    flex-direction: column;
}


.submit-btn {
    width: 250px;
    border: none;
    padding: 12px 15px;
    background-color: #474747;
    color: white;
    font-size: 16px;
    font-weight: bold;
    border-radius: 1.5rem;
    cursor: pointer;
    align-self: center;
    transition: all 0.3s ease;
    font-family: "Nunito", sans-serif;
}

.submit-btn:hover {
    background-color: #242424; 
    transform: translateY(-3px);
}

.submit-btn:active {
    transform: translateY(1px);
}

h1 {
    text-align: center;
    font-size: 32px;
    color: #333;
    font-weight: 700;
    margin-bottom: 20px;
}
.p{
    font-family: "Nunito", sans-serif
}
footer {
    display: flex;
    justify-content: space-between;
    padding: 20px;
    background-color: #333;
    color: #fff;
    position: relative;
    top: 300px;
    
}

footer .box {
    width: 45%;
}

footer .box ul {
    list-style-type: none;
    padding: 0;
}

footer .box ul li {
    font-size: 16px;
    margin-bottom: 10px;
}

footer .box .credentials li {
    display: flex;
    align-items: center;
}

footer .box .credentials li svg {
    margin-right: 10px;
    fill: #ffffff;
    width: 20px;
    height: 20px;
}

footer .box ul li svg.icon1 {
    fill: #141414;
    margin-right: 5px;
    width: 24px;
    height: 24px;
}

footer .box ul li a:hover {
    text-decoration: underline;
}

footer .box .credentials {
    font-size: 15px;
}

@media (max-width: 768px) {
    form {
        width: 80%;
        padding: 20px;
    }

    input, select, .submit-btn {
        width: 95%;
        font-size: 14px;
    }

    .gender > p {
        font-size: 18px;
    }
}
