* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    line-height: 1.5;
    color: #555;
    font-family: 'Lato', sans-serif;
}
a {
    text-decoration: none !important;
    color: #1ABC9C;
}
a:hover { color: #222; }
a img { border: none; }
body, html {
    height: 100%;
    font-family: Arial, sans-serif;
    overflow: hidden;
}
.background-container {
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-image: url('/images/background5.jpg');
    background-repeat: no-repeat;
    background-size: 100% 100%;
}
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4); /* Transparent overlay */
    z-index: -1;
}

header, footer {
    width: 100%;
    padding: 20px;
    text-align: center;
    color: white;
    position: absolute;
    z-index: 1;
}

header {
    top: 0;
    background: rgba(0, 0, 0, 0.5); /* Transparent header */
}

footer {
    bottom: 0;
    background: rgba(0, 0, 0, 0.5); /* Transparent footer */
}
main {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    z-index: 1;
}

h1 {
    font-size: 4em;
}

p {
    font-size: 1em;
}
h3,span {
    color:#222;
}
.content {
    background: #FFF;
    padding: 20px;
    min-width:750px;
    border:1px solid #222;
    margin: 25px;
}
.icon-headphones:before {
    content: "\e6de";
}
.icon-envelope2:before {
    content: "\e6bf";
}
i {
    color: #1ABC9C;
}
