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

body {
    width: 100vw;
    height: 100vh;
    margin: 0;
    background-color: #ffe58f;
    font-family: 'SUIT', sans-serif;
    color: white;
    font-size: 15px;
    line-height: 158%;
}

a{
    color: white;
    text-decoration-line: none;
}

a:hover {
    cursor: pointer;
    text-decoration: solid underline white 1px;
    text-underline-offset: 2px;
}

.category-image:hover {
    cursor: pointer;
}

.desktop-layout {
    display: block;
}
.mobile-layout {
    display: none;
}

.container {
    position: relative;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
}

.left {
    position: absolute;
    top: 0;
    left: 0;
    width: 300px;
    height: 100vh;
    background-color: #6CBB5C;
    z-index: 1;
    border-right: 0.5px solid black;
}

.category {
    width: 300px;
}

.category-image {
    height: 40px;
    margin: 20px 0px 5px 20px;
}

.category-line {
    width: 300px;
    margin-bottom: 10px;
    display: block;
}

.right {
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 100vh;
    background-color: #638CF5;
    z-index: 1;
    display: flex;
    flex-direction: column;
}

.right-resizer {
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    cursor: col-resize;
    background: lightgrey;
    border-left: 0.5px solid gray;
    border-right: 0.5px solid black;
    z-index: 10;
}

.search-container {
    margin-left: 16px;
    margin-right: 10px;
    margin-top: 12px;
    margin-bottom: 12px;
}

.search-input {
    width: 100%;
    padding: 6px 8px;
    font-family: 'SUIT', sans-serif;
    font-size: 14px;
    background-color: white;
    border: 0.5px solid black;
    border-radius: 0;
    outline: none;
}
.search-input::placeholder {
    color: lightgray;
}
.search-input:focus {
    color: black;
    background-color: white;
}

.work-list {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
}
.work-list::-webkit-scrollbar {
    display: none;
}

.work-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
    padding-left: 20px;
    padding-right: 14px;
    padding-top: 9.7px;
    padding-bottom: 9.7px;
    cursor: pointer;
    border-bottom: 0.5px solid white;
}
.work-item:hover {
    background-color: #D8A5FF;
    cursor: pointer;
}
.work-item.hidden {
    display: none;
}
.work-title {
    flex: 1;
    text-align: left;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    min-width: 0;
}
.work-artist {
    text-align: right;
    white-space: nowrap;
    flex-shrink: 0;
}

.rightBottom {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 32px;
    padding-left: 6px;
    padding-bottom: 32px;

    border-top: 0.5px solid white;
}

.bottomLetter {
    width: 275px;
    max-width: 100%;
    object-fit: contain;
}

.bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background-color: #FF5F5F;
    z-index: 1;
    border-top: 0.5px solid black;
    display: flex;
}

.bottom-resizer {
    position: absolute;
    top: -5.5px;
    left: 0;
    right: 0;
    height: 5px;
    cursor: row-resize;
    background: lightgrey;
    border-top: 0.5px solid gray;
    z-index: 15;
}

.bottomLeft {
    width: 300px;
    height: 100%;
    background-color: #FF8FC9;
    border-right: 0.5px solid black;
    flex-shrink: 0;
}

.bottomRight {
    flex: 1;
    height: 100%;
    margin-right: 300px;
    overflow: auto;
}

.bottomText {
    padding: 12px;
}
.bottomParagraph {
    padding: 12px 150px 12px 12px;
}
.paragraph {
    padding-right: 300px;
}

.center::-webkit-scrollbar,
.bottomRight::-webkit-scrollbar {
    display: none;
}

.center {
    height: 100vh;
    overflow-y: auto;
    padding-bottom: 200px;
    margin-left: 300px;
}

.centerImg {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.imagecrop {
    width: 800px;
    max-width: 100%;
}

.imagecrop:hover {
    cursor: pointer;
}