/* Body And Header */


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

header {
    color: white;
    padding: 200px 0;
    position: relative;

}

.header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}
.logo {
    position: absolute;
    top: 0px;
    left: 20px;
    z-index: 2;
}
nav {
    background: transparent;
    padding: 10px 0;
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 3;
}
nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: right;
}
nav ul li {
    display: inline;
    margin: 0 15px;
}
nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: 500;
}
.header-content {
    max-width: 1200px;
    margin: 0 auto;
    /*padding: 100px 20px;*/
    /*text-align: left;*/
    position: relative;
    z-index: 2;
}
.header-content h1 {
    font-size: 48px;
    margin: 0;
    line-height: 1.2;
}
.header-content p {
    font-size: 18px;
    margin: 20px 0;
    max-width: 100%;
}
.header-content a {
    display: inline-block;
    padding: 10px 20px;
    background: white;
    color: #4CAF50;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 500;
}
/* END */

/* Footer */
footer {
    background: #e0f7e9;
    padding: 20px 0;
    text-align: center;
}
footer .footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
footer .footer-content div {
    flex: 1 1 200px;
    margin: 10px;
}
footer .footer-content div h4 {
    font-size: 18px;
    margin-bottom: 10px;
}
footer .footer-content div p, footer .footer-content div a {
    font-size: 14px;
    color: #666;
    text-decoration: none;
}
footer .footer-content div a:hover {
    text-decoration: underline;
}
footer .social-links a {
    margin: 0 10px;
    color: #4CAF50;
    font-size: 20px;
}
/* END */
