body {
    background-image: url('assets/cork-board.png');
    background-repeat: repeat;
    height: 100vh;

    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    position: relative;
}

button {
    background: transparent;
    border: none;
}

html, body, .container, .inner-container {
    cursor: url('assets/tackcursor.cur'), auto;
}

.container {
    width: 50%;
    height: 50%;
    max-width: 1200px;
    background-color: #f2f7b5;
    padding: 10px;
    border-radius: 8px;
    border: 36px solid transparent;
    border-image-source:url('assets/corkborder2.png');
    border-image-slice: 62;
    border-image-repeat: round;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    box-shadow: rgba(0, 0, 0, 0.3) 0px 19px 38px, rgba(0, 0, 0, 0.22) 0px 15px 12px;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 14px;
}

.sidebar {
    width: 10%;
    min-width: 36px;
    height: 100%;
    background: rgba(180, 120, 70, 0.35);
    border: 2px solid rgba(0, 0, 0, 0.15);
    border-radius: 6px;
    box-shadow: inset 0 0 6px rgba(0,0,0,0.12);
    display: flex;
    flex-direction: column;
    justify-content: top;
    align-items: center;
    text-align: center;
    font-family: "Pixelify Sans", sans-serif;
    font-style: normal;
    font-size: 150%;
}

#links-container:hover #links, #links-container:hover #links-text {
    filter: drop-shadow(0 0 10px blue);
}
#links {
    width: 80%;
    height: auto;
    margin-top: 5px;
    image-rendering: pixelated
}

#links-text {
    display: inline;
    font-family: "Pixelify Sans", sans-serif;
    font-style: normal;
    font-size: 150%;
}

#home-container:hover #home, #home-container:hover #home-text {
    filter: drop-shadow(0 0 10px blue);
}

#home {
    width: 80%;
    height: auto;
    margin-top: 10px;
    image-rendering: pixelated;
}

#home-text {
    display: inline;
    font-family: "Pixelify Sans", sans-serif;
    font-style: normal;
    font-size: 150%;
}

#about-container:hover #about, #about-container:hover #about-text {
    filter: drop-shadow(0 0 10px blue);
}

#about {
    width: 80%;
    height: auto;
    margin-top: 10px;
    image-rendering: pixelated;
}

#about-text {
    display: inline;
    font-size: 120%;
}

.inner-container {
    flex: 1;
    min-width: 0;
    height: 100%;
    background: rgba(180, 120, 70, 0.35);
    border: 2px solid rgba(0, 0, 0, 0.15);
    border-radius: 6px;
    gap: 15px;
    padding-left: 15px;
    z-index: 11;
}

.stickynote {
    height: 30%;
    position: absolute;
    right: 5%;
    top: 20%;
    transform: translateY(-50%);
    filter: drop-shadow(4px 6px 8px black);
    z-index: -1;
}

.crayon-house {
    height: 14.5%;
    transform: rotate(-14deg);
    position: absolute;
    right: 9%;
    top: 10%;
    z-index: 0;
}

.comeover {
    height: 3%;
    transform: rotate(-11deg);
    position: absolute;
    right: 6.5%;
    top: 24%;
    z-index: 0;
}

#hover1:hover, #hover2:hover {
    filter: drop-shadow(0 0 10px blue);
}