html {
    font-family: 'Roboto';
    color: black;
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

.bg {
    background-image: linear-gradient(rgb(245, 245, 245), rgb(252, 250, 246), white);
    padding: 30px;
    display: inline-grid;
    grid-template-rows: auto;
    grid-template-columns: 100%;
    
}  

body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: 'Roboto', sans-serif;
    box-sizing: border-box; 
}

*, *::before, *::after {
    box-sizing: inherit; 
}

/*header*/

.logo-header {
    flex: auto;
    flex-wrap: wrap;
    background-image: linear-gradient(rgb(218, 243, 250), aliceblue, white);
    width: 100%;
    height: auto;
}

.logo span img {
    margin-left: 60px;
    margin-top: 20px;
    margin-bottom: 20px;
    height: 165px;
    width: 170px;
}

.nav-header {
    height: auto;
    justify-content: left;
    background-color: rgb(39, 59, 97);
    color: rgb(194, 205, 224);
    border: 1px ridge black;
}

.navs {
    margin-left: 20px;
    width: auto;
}

.navs ul {
    list-style: none;
    list-style-type: none;
}

.navs li {
    display: inline-flex;
    margin-right: 35px;
    transition: background-color 0.3s ease, transform 0.3s ease;
    padding: 10px;
}

.navs li:hover {
    background-color: rgb(245, 245, 245);
    border-radius: 5px;
}

.navs a:hover {
    color: rgb(55, 89, 151);
}

.navs a {
    text-decoration: none;
    color: white;
    font-weight: 550;
    transition: color 0.3s ease, transform 0.3s ease;
}

footer {
    position: fixed;
    background-color: rgb(55, 89, 151);
    padding: 1rem 2rem; 
    bottom: 0;
    width: 100%;
    display: flex;
    align-items: center;
    box-sizing: border-box; 
}

.footer-content {
    display: flex;
    justify-content: space-between;
    width: 100%;
    font-size: 0.75rem;
    color: white;
}

footer .location {
    margin-left: auto; 
}

