@import "fonts.css";
@import "nav.css";

:root {
    --main: #d81b60;
    --secondary: #ffe5f4;
    --body: #fff;
}

#container {
    width: 60ch;
    margin: 0 auto;
    padding-top: 1rem;
    display: flex;
    flex-direction: column;
    min-height: 100%;
    box-sizing: border-box;
}

#header {

}

#nav {

}

#main {
    flex-grow: 1;
}

#footer {
    margin-top: auto;
}

#aside {
    background-color: red;
}

#main-wrapper {
    display: flex;
    gap: 2rem;
}

* {
    font-family: "Oxygen";
}

html, body {
    margin: 0;
    padding: 0;
    height: 100%;
}

body {
    background-color: var(--body);
}

#content-list {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    list-style-type: none;
    padding: 0;
    gap: 2ch;
    row-gap: 2ch;
    justify-content: space-between;

    li {
        width: 20ch;
    }

    h3 {
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    img {
        height: 20ch;
        width: 20ch;
        object-fit: cover;
        border-radius: .5em;
    }
}