*,
html {
    margin: 0;
    padding: 0;
}

.container {}

.navbar-container {
    background-color: seagreen;
    width: 100%;
    height: 10vh;
}

.ul-navbar {
    display: flex;
    height: 75px;
    justify-content: center;
    align-items: center;
}
.li-navbar {
    list-style-type: none;
    padding: 20px;
    margin: 5px;
    color: white;
    font size: 30px;
}

.li-navbar:hover {
    background-color: rgb(104, 109, 82);
    border-radius: 10px;
    transition: 0.2s ease-in-out;
    transition-delay: .1s;
}
.a-navbar {
    color: white;
    text-decoration: none;
    font-weight: 800;
}

.container-content {
    background-color: #555;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80vh;
}
.a-content {
    background-color: seagreen;
    color: black;
    text-decoration: none;
    font-size: 30px;
    width: 720px;
    height: 480px;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    border-radius: 70px;
    box-shadow: 10px 10px 5px 0px rgba(0,0,0,0.75);
    -webkit-box-shadow: 10px 10px 5px 0px rgba(0,0,0,0.75);
    -moz-box-shadow: 10px 10px 5px 0px rgba(0,0,0,0.75);
}
.b-content {
    background-color: #fff;
    color: black;
    text-decoration: none;
    font-size: 30px;
    width: 720px;
    height: 480px;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    border-radius: 70px;
    box-shadow: 10px 10px 5px 0px rgba(0,0,0,0.75);
    -webkit-box-shadow: 10px 10px 5px 0px rgba(0,0,0,0.75);
    -moz-box-shadow: 10px 10px 5px 0px rgba(0,0,0,0.75);
}
.img-content {
    width: 200px;
    height: 300px;
}
.img2-content {
    width: 300px;
    height: 300px;
}
.img3-content {
    width: 200px;
    height: 200px;
}
.container-footer {
    height: 10vh;
    background-color: seagreen;
    display: flex;
    justify-content: center;
    align-items: center;
}
.h1-footer {
    font-size: 20px;
    color: white;
}