@import url('https://fonts.googleapis.com/css?family=Open+Sans:800&display=auto');
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
    font-family: 'Open Sans', sans-serif;
}

html {
    scroll-behavior: smooth;
}


/* HTML5 display-role reset for older browsers */

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

body {
    line-height: 1;
    font-weight: bolder;
}

ol,
ul {
    list-style: none;
}


/*-- Header--*/

#top {
    display: grid;
    grid-template-columns: 2fr 10fr;
    align-items: center;
}

#logo {
    padding: 40px;
    min-width: 100px;
}

#wrapper {
    height: 100vh;
    background: rgb(190, 12, 113);
    background-image: linear-gradient(90deg, rgba(190, 12, 113, 1) 0%, rgba(238, 119, 27, 1) 28%, rgba(212, 66, 21, 1) 67%, rgba(170, 37, 23, 1) 100%), url('bg.svg');
    width: 100%;
    background-blend-mode: darken;
    background-size: cover;
    background-position: 50% 50%;
}

#nav {
    text-align: right;
    padding: 20px;
    text-transform: uppercase;
    color: white;
}

#content {
    text-align: center;
    font-size: 3em;
    text-transform: uppercase;
    font-weight: bolder;
    color: white;
    padding: 5%;
}

#intro {
    font-size: 12px !important;
    margin-top: 30px;
}

#footer {
    background: #AA2517;
    color: #fff;
    display: grid;
    padding: 5% 10%;
    grid-template-columns: 2fr 2fr;
    align-items: center;
    grid-column-gap: 80px;
    height: 100vh;
}

.footertext {
    font-size: 3em;
}

#lowerfooter {
    text-align: left;
}

#contact {
    text-align: right;
}

.underline {
    border-bottom: 5px solid white;
}

a {
    text-decoration: none;
    color: #fff;
}

#go-up {
    border: 2px solid white;
    width: 20px;
    text-align: center;
    font-size: 30px;
    padding: 15px 20px;
    position: absolute;
    right: 0;
    margin-right: 10%;
}

input[type=checkbox] {
    display: none;
}

input[type=checkbox]:checked~.remove-check {
    display: none;
}

input[type=checkbox]:checked~#inspirations {
    display: block;
}

#inspirations {
    display: none;
}

@media only screen and (max-width: 600px) {
    #footer {
        padding: 5%;
        grid-column-gap: 10px;
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footertext {
        font-size: 2em;
        padding-top: 40px;
    }
    #contact {
        text-align: center;
    }
    #go-up {
        margin-left: auto;
        margin-right: auto;
        position: initial;
    }
    #lowerfooter {
        text-align: center;
    }
}