body{
    margin: 0;
    font-family:'Montserrat', sans-serif;
}

header {
    background-color: #91C483;
    height: 50px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-content: center;
}

header nav {
    padding-right: 40px;
    display: flex;
    align-items: center;
}

header img {
    width: 250px;
    padding-left: 40px;
}

nav a{
    color: white;
    font-size: 30px;
    padding-right: 15px;
}

.splash {
    display: flex;
    margin-right: 80px;
    margin-left: 80px;
    margin-top: 40px;
    margin-bottom: 60px;
    justify-content: space-between;
}

.splash1 {
    width: 500px;
    margin-top: 150px;
}
.splash1 img {
    width: 500px;
}

.splash1 p {
    color: #808080;
    margin-left: 20px;
    font-size: 22px;
}

.splash2 {
    width: 500px;
}

.modulo1 {
    display: flex;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    color: white;
}

.modulo1 h2{
    font-size: 30px;
    font-weight: 700;
}
.mod1 {
    background-color: #CCCCCC;
    padding-top: 40px;
    padding-bottom: 90px;
    margin-bottom: 0;
}

.mod1 i {
    font-size: 100px;
}

.content-cards {
    margin-left: 80px;
    margin-right: 80px;
    margin-top: 40px;
    display: flex;
    justify-content: space-around;
}

.card {
    background-color: white;
    width: 200px;
    height: 200px;
    display: flex;
    flex-direction: column;
    text-align: center;
    border: 2px solid #FF6464;
    border-radius: 10px;
    cursor: pointer;
}

.card:hover {
    background-color: #8d8b8b;
    border: 2px solid white;
    color: white;
}

.card:hover h2{
    color: white;
}

.card:hover h3{
    color: white;
}
.card h2 {
    font-size: 40px;
    color: grey;
    margin: 0;
    padding-top: 30px;
}

.card h3{
    margin: 0%;
    font-size: 18px;
    color: #8d8b8b;
    font-weight: 400;
    font-style: italic;
    padding-bottom: 15px;
}

.card a{
    color: white;
    background-color: #FF6464;
    width: 140px;
    padding: 5px;
    border-radius: 5px;
    margin: 0 auto;
    text-decoration: none;
    font-weight: 700;
}

.card a:hover {
    background-color: white;
    color: #FF6464;
}

footer {
    background-color: #828282;
    margin: 0;
    height: 50px;
    display: flex;
    text-align: center;
    justify-content: center;
}

footer p {
    color: white;
    font-size: 12px;
}