*   {
    margin:0;
    padding:0;
}

/* Page */

body{
    font-size: 16px;
    line-height: 20px;
    color: #ffffff;
    background-color: #121212;
    font-family: "Roboto", "Arial", "sans serif";
    margin: 0px;
    padding: 0px;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    flex: 1;
    display:flex;
    min-height: 100vh;
    justify-content: center;
}

a {
    text-decoration: underline;
    color: #eeeeee !important;
}

#container{
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: inherit;
    align-items: stretch;
    align-content: stretch;
    flex: 1;
    max-width: 1500px;
}

#header {
    height: 15%;
    display:flex;
    align-items: center;
    margin: 10px;
}

#content {
    display: flex;
    flex: 1;
    flex-direction: row;
    flex-wrap: wrap;
}

.project{
    background-color: rgba(255,255,255, 0.05);
    margin: 10px;
    padding: 20px 20px 20px 20px;
    min-width: 20%;
    flex: 1 0 28%;
    border-radius: 10px;
    position: relative;
    max-height: 250px;
    box-shadow: 0px 0px 11px 0px rgba(0,0,0,0.75);
    -webkit-box-shadow: 0px 0px 11px 0px rgba(0,0,0,0.75);
    -moz-box-shadow: 0px 0px 11px 0px rgba(0,0,0,0.75);
}

#foot{
    text-align: center;
    display:flex;
    justify-content: center;
    align-content: center;
}

/* Decoration */

#header p{
    font-size: 30px;
    padding-bottom: 15px;
    padding-top: 15px;
}

.project p.header{
    font-size: 22px;
    padding-bottom: 10px;
    font-weight: 500;
    
}

.project a.button {
    position: absolute;
    right: 0px;
    left: 0px;
    bottom: 0px;
    text-align: center;
    text-decoration: none;
    background-color: #0d7377;
    border-radius: 10px;
    height: 30px;
    line-height: 30px;
}

#foot p{
    margin-top: auto;
    flex-grow: 1;
    line-height: 20px;
    font-size: 14px;
}

input#submit {
    font-size: 16px;
    background-color: transparent;
    color: white;
    border-style: none;
}

@media only screen and (max-width: 1000px) {
    .container{
        display:block;
    }
    #content{
        flex-wrap: wrap;
        flex-direction: column;
    }
    .project{
        width: inherit;
        flex: 1;
    }
}