html {
    box-sizing: border-box;
    margin: 0px;
    padding: 0px;
    font-family: "Nunito", sans-serif;
}

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

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

.container {
    width: 60%;
    padding: 30px; 
background: rgba(182, 182, 182, 0.59);
border-radius: 16px;
box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
backdrop-filter: blur(11.1px);
-webkit-backdrop-filter: blur(11.1px);
border: 1px solid rgba(182, 182, 182, 0.4);
}
.center{
    display:flex;
    justify-content:center;
    align-items:center;
    height: 100vh;
}

.button {
    padding: 12px 20px;
    background-color: rgb(199, 184, 184);
    color: black;
    text-decoration:none;
    font-family: "Nunito", sans-serif;
    border-radius: 1rem;
}

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: 0 0 1rem 1rem;
    
}
.home{
    color: black;
    text-decoration:none;
    margin-right: 1em !important;
    font-family: "Nunito", sans-serif;
}
.gal
{
    color: black;
    text-decoration:none;
    margin-right: 1em !important;
    font-family: "Nunito", sans-serif;
}

.more
{
    color: black;
    text-decoration:none;
    align-items: center;
    margin-right: 1em !important;
    font-family: "Nunito", sans-serif;
}
.Contact
{
    color: black;
    text-decoration:none;
    margin-right: 1em !important;
    font-family: "Nunito", sans-serif;
}

footer {
    display: flex;
    justify-content: space-between;
    padding: 20px;
    background-color: #333;
    color: #fff;
}

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 screen and (max-width: 640px) {
    .container {
        width: 90%;

    }
  }

@media screen and (max-width: 700px) {
    footer {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .box {
        width: 80%;
    }
}