/*fonts*/

@import url('https://fonts.googleapis.com/css?family=Lato|Nunito|Roboto|Poppins');

/* styling*/

* {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-size: 100%;
    vertical-align: baseline;
}

body {
    background-color: #FAFAFA;
}

.title {
    background-color: #303030;
    position: relative;
    top: 0;
    height: 100vh;
    width: 100%;
}

.title h1 {
    color: #FFFFFF;
    font-size: 6em;
    font-family: 'Poppins', 'Lato', sans-serif;
    font-weight: lighter;
    text-align: center;
    user-select: none;
    text-shadow: 1px 1px 3px rgba(12, 12, 12, 0.5);
    position: relative;
    top: 50%;
    transform: translateY(-50%);
}

.content {
    background-color: #FAFAFA;
    width: 100%;
    height: 100vh;
    position: relative;
}

.portfolio p {
    color: #000000;
    font-family: 'Poppins', 'Lato', 'Roboto', sans-serif;
    font-size: 2em;
    padding-left: 3vw;
    padding-right: 3vw;
    text-align: center;
    padding-bottom: 10vh;
}

.portfolio {
    position: relative;
    top: 15vh;
    text-align: center;
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    text-align: center;
}

.portfolio a {
    color: #FFFFFF;
    font-weight: lighter;
    user-select: none;
    text-decoration: none;
    font-family: 'Roboto', 'Lato', sans-serif;
    font-size: 30px;
    text-align: center;
    box-shadow: 3px 3px 12px rgba(12, 12, 12, 0.5);
    background-color: #00897B;
    padding: 3.5vh;
    padding-left: 3vw;
    padding-right: 3vw;
    transition: background-color, ease 0.2s;
    transition: box-shadow, ease 0.5s;
}

.portfolio a:hover {
    background-color: #00695C;
    color: #FFFFFF;
}

#footer {
    color: rgba(0, 0, 0, 0.5);
    font-size: 1em;
    font-family: 'Lato', 'Roboto', sans-serif;
    user-select: none;
    position: relative;
    padding-left: 3vw;
    padding-bottom: 3vh;
    top: 47vh;
    text-align: left;
}

#footer a {
    color: rgba(0, 0, 0, 0.5);
    text-decoration: none;
    padding: none;
}

#footer a:hover {
    color: rgba(0, 0, 0, 0.7);
}
