:root {
    --primary-color: #005772;
    --secondary-color: #9052bc;
    --tertiary-color: #004257;
    --accent-color: #00dce4;
}

body {
    background-color: var(--primary-color);
    background-image: url('../images/stars.webp');
    font-family: Arial, sans-serif;
    transition: 1s;
}

.title h1 {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 0px;
    color: #ffffff;
    text-shadow: 2px 2px 4px var(--accent-color);
}

.title p {
    text-align: center;
    align-self: center;
    margin-top: 0px;
    color: #ffffff;
    text-shadow: 2px 2px 4px var(--accent-color);;
}

.icon img {
    width: auto;
    height: 8em;
    border-radius: 10px;
    display: block; 
    margin: 1em auto;
}

.tabs {
    background-color: var(--primary-color);
    /* height: 3em; */
    line-height: 3em;
    text-align: center;
}

.tabs a {
    color: #ffffff;
    text-decoration: none;
    padding: 0.5em;
    transition: 0.3s;
}

.tabs a:hover {
    background-color: var(--tertiary-color);
    padding: 0.75em;
    border-radius: 5px;
}

.footer {
    color: white;
}

.footer a {
    color: var(--accent-color);;
}

.edit {
    position: fixed;
    right: 12px;
    bottom: 12px;
    text-decoration: underline;
    color: var(--accent-color);
}

#posts h2 {
    margin: 0;
    color: var(--tertiary-color);
    text-align: center;
}

#posts p {
    text-align: left;
}

#posts .date {
    color: var(--secondary-color);
    font-size: 0.8em;
    font-weight: bold;
    text-align: right;
}

.box {
    margin: 15px auto;
    width: 30%;
    display: flex;
    flex-direction: column;
    text-align: center;
    background-color: #ffffff;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 2px 2px 4px var(--accent-color);
}

.box p {
    color: var(--tertiary-color);
    margin: 0.4em;
}

.box img {
    width: auto;
    height: 5em;
    margin: 0.25em auto;
}

.box a {
    color: var(--secondary-color);
}

.box a:hover {
    color: var(--accent-color);
}

.box p img {
    height: 2em;
    width: auto;
    vertical-align: middle;
    display:inline-block;
}

@media (max-width: 1000px) {
    body {
        font-size: 1.5em;
    }

    .icon img {
        height: 6em;
    }

    .box {
        width: 80%;
    }
}

.hidden {
    display: none;
}