:root {
    --text-color: #303030;
}

body {
    padding: 0px;
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-style: normal;

    -webkit-user-select: none; /* Safari */
    -ms-user-select: none; /* IE 10 and IE 11 */
    user-select: none; /* Standard syntax */

    color: var(--text-color);
}

#header {
    max-width: 100vw;
    max-height: 50vh;
    height: 240px;
    display: block;
}

#header img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

#content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

#content .item {
    display: flex;
    flex-direction: row;
    align-items: center;

    border: 1px solid var(--text-color);
    border-radius: 12px;    
    overflow: hidden;
    cursor: pointer;

    max-width: 600px;
    width: 100%;

    font-size: 20px;
    
}

#content .item img {
    object-fit: cover;
    height: 120px;
    max-height: 25vh;
    aspect-ratio: 1.5;
    flex: 0;
}

#content .item span {
    padding: 8px;
    text-transform: uppercase;
}

#content .item .title {
    flex-grow: 1;
}

#content .item .index {
    flex: 0;
    padding-left: 12px;
}

@media screen and (min-width: 520px) {
    #content .item {
        font-size: 24px;
    }
}

@media screen and (max-width: 380px) {
    #content .item {
        font-size: 16px;
    }

    #content .item img { 
        height: 100px;
    }
}