body {
    font-family: 'Silkscreen', sans-serif;
    background-color: #242638;
    color: #EAEAEA;
    margin: 0;
    padding: 0;
}

header {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    border-bottom: 1px solid #4A4E69;
    position: relative;
}

.title-container {
    display: flex;
    align-items: center;
}

#clock {
    font-size: 1.5em;
    color: #D8B4FE;
    position: absolute;
    right: 20px;
}

footer {
    padding: 20px;
    text-align: center;
    border-top: 1px solid #4A4E69;
}

.logo {
    width: 50px;
    height: 50px;
    margin-right: 15px;
}

h1 {
    font-size: 2em;
    text-transform: none;
    letter-spacing: normal;
    text-shadow: none;
    margin: 0;
}

h1 a {
    color: #EAEAEA;
    text-decoration: none;
}

main {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 20px;
    align-items: flex-start;
}

.left-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.blog-post {
    margin-bottom: 20px;
}

.blog-post h2 {
    font-size: 1.5em;
    color: #D8B4FE;
}

p {
    line-height: 1.6;
}

a {
    color: #A7C7E7;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

footer p {
    font-size: 0.8em;
    margin: 0;
}

fieldset {
    border: 1px solid #4A4E69;
    border-radius: 5px;
    padding: 20px;
    margin: 0;
}

.philes {
    width: 500px;
}

.add-button {
    width: 300px;
}

legend {
    font-size: 1.5em;
    color: #D8B4FE;
    padding: 0 10px;
}

.philes table {
    width: 100%;
    border-collapse: collapse;
}

.philes td {
    padding: 10px;
    border-bottom: 1px solid #4A4E69;
}

.philes tr:last-child td {
    border-bottom: none;
}

.add-button-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.add-button-container img {
    width: 88px;
    height: 31px;
}

.add-button-container textarea {
    width: 100%;
    box-sizing: border-box;
    height: 60px;
    background-color: #3A3D52;
    color: #EAEAEA;
    border: 1px solid #4A4E69;
    border-radius: 5px;
    padding: 10px;
    font-family: 'Silkscreen', sans-serif;
    resize: none;
}

.add-button-container button {
    background-color: #D8B4FE;
    color: #242638;
    border: none;
    border-radius: 5px;
    padding: 10px 15px;
    cursor: pointer;
    font-family: 'Silkscreen', sans-serif;
    transition: background-color 0.3s;
}

.add-button-container button:hover {
    background-color: #C7A2E8;
}

.links-box {
    width: 300px;
}

.links-container {
    padding: 10px;
}

.links-container .idk {
    color: #D8B4FE;
}

.bottom-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #1a1c2a;
    padding: 10px;
    text-align: center;
    border-top: 1px solid #4A4E69;
}