@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,300;0,400;0,700;1,400&display=swap');
:root {
    --dark-blue: #0b253c;
    --blue: #0a253b;
    --offblue: #071a2b;
    --grey-blue: #69839b;
    --offwhite: #edf3f3;
    --aqua: #1fc1c3;
    --offaqua: #17a9ac;
    --red: #d8115d;
    --green: #1add72;
}

* {
    box-sizing: border-box;
}

html
{
    text-size-adjust: 100%;
    font-size: 62.5%;
    line-height: 1;
}

html * {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
}

html,
body {
    min-height: 100%;
    background: var(--dark-blue);
    color: white;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
}

body {
    font-size: 1.6rem;
    text-rendering: optimizeLegibility;
}

body,
ul,
ol,
dl {
    margin: 0;
}

article,
aside,
audio,
footer,
header,
nav,
section,
video {
    display: block;
}

h1 {
    font-size: 3.8rem;
    font-weight: 300;
}

p {
    -ms-word-break: break-all;
    word-break: break-all;
    word-break: break-word;
    -moz-hyphens: auto;
    -webkit-hyphens: auto;
    -ms-hyphens: auto;
    hyphens: auto;
}

textarea {
    resize: vertical;
}

table {
    border-collapse: collapse;
}

td {
    padding: .5rem;
}

img {
    border: none;
    max-width: 100%;
}

form
{
    width: 300px;
}

form > * 
{
    width: 100%;
}

label
{
    font-size: 1.4rem;
    font-weight: bold;
    text-transform: uppercase;
    color: var(--grey-blue);
    letter-spacing: 0.1rem;
    margin-top: 2rem;
    margin-bottom: .7rem;
    display: block;
    text-align: center;
}

select
{
    -webkit-appearance: none; 
    appearance: none;
}

select::-ms-expand 
{
    display: none;
}

input[type="text"],
input[type="date"],
input[type="time"],
select,
input[type="number"] {
    border-radius: 50px;
    border: 2px solid var(--dark-blue);
    min-width: 200px;
    padding: 10px 20px;
}

input[type="search"] {
    -webkit-appearance: textfield;
}

input[type="submit"] {
    -webkit-appearance: none;
}

input[type="text"]:focus,
input[type="date"]:focus,
input[type="time"]:focus,
select:focus,
input[type="number"]:focus {
    border-color: var(--aqua);
}

input:required:after {
    color: #f00;
    content: " *";
}

input[type="email"]:invalid {
    background: #f00;
}

input#other
{
    margin-top: .7rem;
}

.main-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding: 80px 0px;
}

.header-container {
    width: 100%;
    text-align: center;
}

.btn {
    text-align: center;
    background: transparent;
    border-radius: 50px;
    border: 1px solid var(--aqua);
    color: var(--aqua);
    width: 100%;
    padding: 20px 0px;
    transition: 0.3s linear;
    margin-top: 1.4rem;
    font-weight: bold;
}

.btn:focus,
.btn:hover {
    background-color: var(--aqua);
    color: var(--dark-blue);
}

.entries-container
{
    width: 100%;
}

.entries-block
{
    display: block;
    width: 90%;
    max-width: 80rem;
    overflow: hidden;
    margin: 0 auto;
    padding-top: clamp(2rem, 5vw, 5rem);
}

.entries-block h3
{
    color: var(--offaqua);
    font-size: 2rem;
    font-weight: 700;
    width: 100%;
    margin: 0;
    text-align: center;
    padding: 2rem 1.5rem 1rem;
    border-radius: 1rem 1rem 0 0;
    background-color: white;
}

.entry-item,
.entries-header
{
    text-decoration: none;
    color: var(--offblue);
    display: grid;
    grid-template-columns: repeat(4, 1fr) 4rem;
    align-items: center;
    align-content: center;
    justify-content: center;
    justify-items: center;
    font-size: 1.4rem;
}

.entries-header
{
    border-bottom: .2rem solid var(--grey-blue);
    background-color: white;
}

.entry-item > *,
.entries-header > *
{
    padding: 1rem;
}

.entries-header > *
{
    font-weight: 700;
    color: var(--grey-blue);
}

.entries-list
{
    overflow: hidden;
    border-radius: 0 0 1rem 1rem;
}

.entry-item
{
    overflow: hidden;
}

.entry-item:nth-child(2n-1){
    background-color: var(--offwhite);
}

.entry-item:nth-child(2n){
    background-color: white;
}

.entry-delete
{
    justify-self: flex-start;
    cursor: pointer;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.entry-delete svg
{
    fill: var(--grey-blue);
}