body {
    background-image: url(background.png);
}

.logodiv {
    background-color: rgb(185, 219, 230);
    border-radius: 20px;
    width: 950px;
    margin-left: auto;
    margin-right: auto;
}

.navbar {
    display: flex;
    flex-direction: row;    
    height: 50px;
    width: 440px;
    color: rgb(21, 58, 0);
    border-radius: 15px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 40px;
    margin-bottom: 40px;
    background-color: rgb(185, 219, 230);
    justify-content: center;
    align-items: center;
    font-size: 30px;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}

.nav {
    height: 100px;
    background-color: rgb(185, 219, 230);
    border-radius: 10px;
}

.offers {
    background-color: rgb(185, 219, 230);
    height: 270px;
    width: 1150px;
    color: rgb(21, 58, 0);
    font-size: 25px;
    font-family: monospace;
    font-weight: bold;
    text-align: center;
    padding-top: 5px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 40px;
    margin-bottom: 40px;
    border-radius: 10px;
    padding-left: 20px;
    padding-right: 20px;
}

.branches {
    display: inline-block;
    background-color: rgb(185, 219, 230);
    height: 200px;
    width: 400px;
    color: rgb(21, 58, 0);
    font-size: 25px;
    font-family: monospace;
    font-weight: bold;
    text-align: center;
    padding-top: 5px;
    margin-left: 40px;
    margin-right: auto;
    margin-top: auto;
    margin-bottom: 40px;
    border-radius: 15px;
}

.updates {
    display: inline-block;
    background-color: rgb(185, 219, 230);
    height: 400px;
    width: 400px;
    color: rgb(21, 58, 0);
    font-size: 25px;
    font-family: monospace;
    font-weight: bold;
    text-align: center;
    padding-top: 5px;
    margin-left: auto;
    margin-right: auto;
    margin-top: auto;
    margin-bottom: 40px;
    border-radius: 10px;
    
}

img[src="logo.png"] {
    display: block;
    height: 200px;
    width: 900px;
    margin-left: auto;
    margin-right: auto;
}

img[src="copyright.png"] {
    height: 60px;
    width: 60px;
}

footer p {
    font-weight: bold;
    text-align: center;
    font-size: 15px;
}

* {
    color: rgb(0, 58, 82);
}

.open {
    display: inline-block;
    height: 341px;
    width: 400px;
    background-color: rgb(185, 219, 230);
    color: rgb(21, 58, 0);
    font-size: 25px;
    font-family: monospace;
    font-weight: bold;
    text-align: center;
    padding-top: 5px;
    margin-left: auto;
    margin-right: 40px;
    margin-top: auto;
    margin-bottom: 40px;
    border-radius: 10px;   
}

.branches, .offers, .updates, .open {
    animation: shadow-animation 2s ;
    cursor: pointer;
}

.boxx:hover {
    box-shadow: 20px 20px 40px #888888;
}

@keyframes shadow-animation {
    0% {box-shadow: 1px 1px 10px #7e9ea0;}
    100%{box-shadow: 20px 20px 40px #888888;}
}