@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;800&display=swap');

:root {
    --primary: #001524;
    --secondary: #153d6d;
    --accent: #00eeff;
    --background: #ffecd1;
    --text: #ffecd1;
    --border: var(--secondary);
    --border-radius: 0.25rem;
    --box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);

}
  
body {
    font-size:16px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    background-color: var(--primary);
    /* background-image:linear-gradient(to bottom right, var(--primary), var(--secondary)); */
    color: var(--text);
    padding: 0;
    margin: 0;

}
h1, h2, h3, h4, h5, h6 {
    font-weight: 800;
}
h1 {
    font-size: 4rem;
    color: var(--secondary);
}
.wrapper {
    margin: 0 auto;
    padding:1rem 1rem;
}
.table-responsive {
    overflow-x: auto;
}
table {
    border-collapse: collapse;
    width:100%;
}
th, td {
    border-bottom: 1px solid var(--secondary);
    text-align:left;
    padding:1rem;
}
td:last-child {
    white-space: nowrap;
}
th {
    background-color: rgba(0,0,0,0.2);
}
tr:nth-child(even) {
    background-color: rgba(0,0,0,0.1);
}
img {
    max-width: 100px;
    max-height: 100px;
}
img.full-image {
    max-width: 100%;
    max-height: 100%;
    width:500px;
    margin: 24px auto;
    display: block;
}
form {
    max-width: 500px;
    margin: 0 auto;
}
label {
    display: block;
    margin-bottom: 0.5rem;
}
input, textarea, select {
    display: block;
    width: 100%;
    padding: 0.5rem;
    margin-bottom: 1rem;
    background: var(--secondary);
    color: var(--text);
    border:none;
}
.button {
    display: inline-block;
    padding: 0.5rem 1rem;
    border: 4px solid transparent;
    text-decoration: none;
    color: var(--primary);
    font-weight:800;
    background-color: var(--accent);
    font-size:1.4rem;
}
td .button {
    padding:.2rem .4rem;
    font-size: .8rem;
}
a {
    text-decoration: none;
    color: var(--accent);
}
#logo {
    width:100px;
}
#logo .one {
    fill: var(--background);
}
#logo .two {
    fill: var(--accent);
}
nav {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 1rem;
    background: var(--primary);
    border-bottom: 1px solid var(--secondary);
}
nav > div:last-child {
    margin-left: auto;
    text-align: left;
}
nav a {
    text-decoration: none;
    padding: 0.5rem 1rem;
    font-weight: 800;
    color: var(--background);
    font-size: 1rem;
}
nav a:has(#logo) {
    padding: 0;
}
#filter-menu {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: 1rem;
    padding:.7rem;
    background: var(--secondary);
    color: var(--text);
    border:none;
    display:inline-block;
    width:auto;
}
#search {
    display: block;
    width: 100%;
    padding: 0.8rem;
    margin-bottom: 1rem;
    font-size:1.4rem;
}
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 1rem 0;
    flex-wrap: wrap;
}
.pagination a {
    text-decoration: none;
    padding: .5rem;
    border-bottom:1px solid var(--background);
    color:var(--background);
    font-size: 1rem;
    margin:2px;
}
.pagination a.active,
.pagination a:hover {
    background-color: var(--accent);
    color: var(--primary);
}

@media (min-width: 768px) {
    .wrapper {
        max-width: 1100px;
        margin: 0 auto;
        padding:3rem 1rem 5rem 1rem;
    }
    #logo {
        width:150px;
    }
}