@font-face {
    font-family: Waxwing;
    src: url(Assets/Fonts/Waxwing-Regular.ttf);
}

a {
    color: inherit; /* blue colors for links too */
    text-decoration: inherit; /* no underline */
  }

body {
    margin: 0;
    font-family: Waxwing;
}

#image-container {
    height: calc(100% - 185px);
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    overflow: hidden;
    z-index: -1;
    /* display: flex;
    align-items: center; */
    cursor: pointer;
}

#header-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.info-wrapper {
    position: fixed;
    bottom: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
}

#footnote {
    background-color: #FFFF00;
    border: 1px black solid;
    border-bottom: none;
    margin-left: 70%;
    height: 40px;
    width: 30%;
    display: flex;
    align-items: center;
    -webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
    -moz-box-sizing: border-box;    /* Firefox, other Gecko */
    box-sizing: border-box;         /* Opera/IE 8+ */
}

.footnote-text {
    padding-left: 12px;
    font-size: 10px;
}

#main-content {
    height: 185px;
    display: flex;
    flex-direction: row;
}

.body-text {
    width: 70%;
    height: 100%;
    font-size: 16px;
    line-height: 20px;
    border: 1px black solid;
    background-color: #B7A289;
    border-right: none;
    color: black;
    overflow: scroll;
    -webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
    -moz-box-sizing: border-box;    /* Firefox, other Gecko */
    box-sizing: border-box;         /* Opera/IE 8+ */
}

.text {
    padding: 26px;
}

.text-line {
    margin-bottom: 10px;
}

#hello {
    font-size: 22px;
}

.link-box-container {
    width: 30%;
    display: flex;
}

.link-box {
    width: 50%;
    height: 100%;
    border: 1px black solid;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 22px;
}

.link-box:hover {
    text-decoration: underline;
}

#home-link {
    background-color: #D5BFD6;
    border-right: none;
    padding: 10px 0;
    -webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
    -moz-box-sizing: border-box;    /* Firefox, other Gecko */
    box-sizing: border-box;         /* Opera/IE 8+ */
}

#drawing-link {
    background-color: #A1B499;
    padding: 10px 0;
    -webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
    -moz-box-sizing: border-box;    /* Firefox, other Gecko */
    box-sizing: border-box;         /* Opera/IE 8+ */
}

.text-link {
    border-bottom: 1px dotted black;
}

.text-link:hover {
    border-bottom: 1px solid black;
}

@media only screen and (max-width: 808px) {
    #footnote {
        /* margin: 0;
        width: 100%; */
        display: none;
    }


    #image-container {
        display: none;
    }

    #main-content {
        flex-direction: column;
        height: 100%;
        position: fixed;
        top: 0;
    }

    .body-text {
        width: 100%;
        border-bottom: none;
        border-right: 1px black solid;
        height: calc(100vh - 50vw);
        /* padding-top: 100px; */
    }
    
    .link-box-container {
        width: 100%;
        height: 50vw;
    }
}

.calvino-page {
    background-color: #F1FDD3;
    height: 100%;
}

#calvino-img {
    position: fixed;
    top: 20px;
    left: 20px;
    height: 85%;
}