/* GENERAL */

*
{
    margin: 0;
    padding: 0;
    background-color: #eeeeee;
}

body
{
    font-family: Arial, Helvetica, sans-serif;
    font-size: 15px;
}
img
{
    width: 400px;
    height: auto;
    float: left;
}
ul
{
    list-style: none; 
}
a
{
    text-decoration: none;
    color:black
}
p
{
    background: none;

}
.wrapper
{
    width: 1200px;
    margin: 0 auto;
    padding: 0 10px;
}

.clear
{
    clear: both;
}

.button {
    margin-top: 20px;
    transition-duration: 0.4s;
    border: none;
    color: white;
    background-color: cornflowerblue;
    border-radius: 12px;
    padding: 14px 40px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    cursor: pointer;
  }

.button:hover
{
    color: cornflowerblue;
    background-color: white;
    border-color: cornflowerblue;
    border-style: solid;
    border-radius: 12px;
    border-width: 2px;
    padding: 14px 40px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    cursor: pointer;
}



/* HEADER */

header
{
    height: 120px;
}
header h1
{
    float: left;
    margin-top: 32px;
}
header nav
{
    float: right;
    margin-top: 80px;
}

header nav ul li
{
    float: left;
    display: inline-block;
}

header nav ul li a
{
    text-transform: uppercase;
    font-weight: bold;
    margin-right: 30px;
}

/* MAIN IMAGE */

#main-image
{
    height: 228px;
    background-image: url('image/menu.jpg');
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
}

/* LIST */

h2
{
    margin-top: 30px;
    margin-bottom: 30px;
    text-transform: uppercase;
}

#work article
{
    float: left;
}

#webtool article
{
    float: left;
}

#webseite article
{
    float: left;
    padding-bottom: 20px;
}
.overlay
{
    background: white;
    height: 120px;
    width: 240px;
    padding: 20px;
    border-radius: 10px 10px 10px 10px;
    margin-right: 20px;
}

/* FOOTER */

footer
{
    height: 160px;
    text-align: center;
    background-color: #444;
}

footer h3
{
    padding-top: 60px;
    color: white;
    background-color: #444;
}

footer div
{
    background-color: #444;
}