@import url(reset.css);

html {
    box-sizing: border-box;
}

*, *:before, *:after {
    box-sizing: inherit;
}

body {
    background-color: black;
}

#TaskHolder {
    width: 1200px;
    height: 700px;
    border: solid white 0.2vw;
    background-image: url(Media/CorkBoardHighRes.jpg);
    background-repeat: repeat;
    background-size: 100%;
    border-radius: 0.5vw;
}

#stickyButton {
    width: 100%;
    height: 100%;
}

.PlacedNote {
    width: 175px;
    height: 175px;
}

#Note {
    width: 175px;
    height: 205px;
}

#NoteParagraph {
    font-family: 'Comic Sans MS';
    font-size: 20px;
    color: black;
    padding: 5px;
    text-align: center;

    width: 100%;
    height: 100%;
    margin-top: 25px;
}

.PlacedNote {
    display: grid;
    grid-template-rows: 30px 175px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: sans-serif;
    color: Black;
}

p, textarea {
    font-family: 'Comic Sans MS';
    font-size: 20px;
    color: black;
    padding: 5px;
    text-align: center;
}

.fakeNote {
    width: 175px;
    height: 200px;
    margin: 10px;
}

textarea {
    width: 100%;
    height: 100%;
    outline: none;
    border: none;
    resize: none;
    overflow-x: hidden;
    overflow-y: hidden;
    background-color: lightgoldenrodyellow;
}

button {
    background-color: lightgoldenrodyellow;
    border: solid 2px black;
    font-family: 'Comic Sans MS';
    font-size: 20px;
}

.stickyButton {
    background-color: rgb(255, 244, 195);
    border: none;
    width: 100%;
    height: 30px;
}

textarea:focus {
    outline: none;
}

h1 {
    font-size: 2.5vw;
    padding-left: 2.75vw;
}

.GenericTask {
    background-color: white;
    width: 100%;
    border-radius: 0.5vw;
}

#Campfire {
    background-color: green;
    width: 180px;
    height: 240px;
    background-image: url(Media/download.jpg);
    background-repeat: repeat;
    background-size: 100%;
}