* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    width: 100vw;
    display: flex;
    align-items: center;
    justify-content: center;
}

body {
    border: px solid black;
    width: 100vw;

    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-items: center;
    overflow-x: hidden;
}

.header {
    border: 0px solid lightcoral;
    width: 92vw;
    max-width: 920px;
    margin: 40px 0vw 0vw 0vw;
    border: 0px solid blue;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.line {
    width: 100%;
    border-bottom: 1px solid lightcoral;
}

ul {
    list-style: none;
    display: flex;
    align-items: center;
}

li {
    border: 0px solid black;
    color: grey;
    float: left;
    margin: 0 10px 7px 10px;
    font-size: 12pt;
    font-family: 'Exo', sans-serif;
    font-weight: 300;
}

.Current {
    color: lightcoral;
    font-weight: 400;
    font-size: 20pt;
}

a:hover {
    text-decoration: underline;
}

a {
    color: grey;
    text-decoration: none;
}


main {
    margin-top: 5vw;
    border: px solid black;
    width: 100%;
    height: 60vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

#spoonflower {
    border: 0px solid grey;
    border-radius: 8px;
    background-color: rgb(241,241,248);
    color: grey;
    padding: 10px 15px;
    font-size: 15pt;
    font-family: 'Exo', sans-serif;
    font-weight: 400;
}

a img {
    width: 100%;
}






footer {
    width: 100vw;
    position: fixed;
    left: 0;
    bottom: 0;
    background-color: rgb(240,240,240);
    display: flex;
    flex-direction: row;
    justify-content: center;
    color: grey;
}

footer a img {
    width: 20px;
    margin: 5px;
    opacity: 70%;
}

footer a {
    display: flex;
    align-items: center;
}

footer a img:hover {
    opacity: 90%;
}









@media (min-width: 1000px) {
    
    
}

@media (min-width: 1500px) {
    
    }

@media only screen and (max-width: 600px) {
    .header {
        margin-top: 27px;
        width: 100vw;
    }

    li {
        font-size: 11pt;
        margin: 0 8px 7px 8px;
    }

    .Current {
        font-size: 18pt;
    }

    #spoonflower {
        font-size: 13pt;
      }

/*
    #spoonflower {
        width: 80%;
    }
    */
    
}