@charset "UTF-8";
/* CSS Document */

/* ---------  general styles ---------  */

body {
    font-family: 'Poppins', Sans-Serif;
    font-size: : 14px;
    text-align: center;
}

.getting-to-know {
    background-color: #ccffcc;
    background-image: linear-gradient(#ccffcc, #ffffcc);
    height: auto;
}

.my-ascii {
    background-color: #e0ebeb;
    background: linear-gradient(to bottom, #ffe6ff 77%, #33ccff 100%);
    height: auto;
}

.my-background {
    background-color: #e0ebeb;
    background: linear-gradient(to bottom, #ffe6ff 77%, #33ccff 100%);
    height: auto;
}

.design-inspiration {
    background-color: #e0ebeb;
    background: linear-gradient(to bottom right, #c1d7d7 33%, #fbf4e9 68%);
    height: auto;
}

.non-designed {
    background-color: #e0ebeb;
    background: linear-gradient(to top left, #c1719d 0%, #ffffff 67%);
    height: auto;
}

.design-object {
    background-color: #e0ebeb;
    background: linear-gradient(to bottom, #ccf2ff 60%, #cc0000 100%);
    height: auto;
}

h1 {
    font-family: 'Abril Fatface', cursive;
    font-size: 60px;
    letter-spacing: 2px;
    color: #cc0000;
    line-height: 0;
}

h2 {
    font-family: 'Abril Fatface', cursive;
    font-size: 32px;

}

p {
    font-family: 'Poppins', Sans-Serif;
    font-size: 18px;
    text-align: center;
}

cite {
    font-family: 'Poppins', Sans-Serif;
    font-size: 12px;
    padding-top: 0;
    text-align: center;
}

header {
    height: 120px;
    padding: 10px;
}

nav {
    width: 100%;
    text-align: center;
    float: left;
    margin-top: 40px;
}


ul {
    margin-left: 0;
    padding-left: 0;
}

/*overwrites default bullet points and padding*/
li {
    display: inline-block;
    padding: 10px 15px;
    font-family: 'Poppins', Sans-Serif;
    font-size: 18px;

}

/* unvisited link */
a:link {
    color: #0f2e51;
}

a:hover {
    background-color: white;
    color: black;
}

.current-page {
    background-color: red;
    border-radius: 50%;
    color: white;
}

/* selected link */
a:active {
    color: lightblue;
}

section {
    width: 75%;
    text-align: center;
    margin-right: auto;
    margin-left: auto;
    min-height: 650px;
}

.content {
    width: 60%;
}


.rotate:hover {
    -webkit-transform: rotateZ(30deg);
    -ms-transform: rotateZ(30deg);
    transform: rotateZ(30deg);
}



footer {
    height: 40px;
    line-height: 40px;
    width: 800px;
    margin-left: auto;
    margin-right: auto;
    border-top: solid black 1px;
}