/* body */
body {
    background-color: #FD1C03;
    padding: 5%;
}
/* Navigation Bar */
nav {
    display: flex;
    align-items: center;
    border-radius: 20px;
    background-color: black;

}
nav a {
    padding: 20px;
    color: white;
    text-decoration: none;
    font-size: 1.5rem;
}
nav a:hover {
    color: white; 
    background-color: #FD1C03;
    padding: 10px;
    border-radius: 50px;
}
nav a:active {
    text-decoration-color: #FD1C03;
}

nav img {
    width: 100px;
}

nav h1 {
    color: white;
}
/* Main Body */
section {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
}
div {
    margin: 20px;
    padding: 100px 10px 100px 10px;
    background-color: white;
    border-radius: 20px;
}
div:hover {
    color: white;
    background-image: linear-gradient(to top, #FD1C03, black);
}




/* footer */
footer {
    background-color: black;
    color: white;
}
footer a {
    text-decoration: none;
    color: white;
}
footer a:hover {
    text-decoration: underline;
    text-decoration-color: #FD1C03;
    text-decoration-thickness: 2px;
}
footer a:active {
    color: #FD1C03;
    text-decoration: underline;
    text-decoration-color: white;
    text-decoration-thickness: 2px;
}
footer section {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
footer div {
    flex-wrap: nowrap;
    flex-flow: wrap;
    flex-direction: column;
    align-content: flex-start;
}
footer img {
    width: 200px;
}
footer address {
    font-style: normal;
}
footer i {
    color: white;
}