body {
    background-color: rgb(16, 6, 27);
    color: rgb(0, 183, 255);
    font-family: 'Courier New', Courier, monospace;
    font-size: larger;
    margin: auto;
    padding: auto;
}

header {
    display: flex;
    justify-content: center;
}
button {
    background-color: rgb(74, 51, 204);
    color: rgb(0, 183, 255);
    font-family: 'Courier New', Courier, monospace;
    font-size: xx-large;
    font-weight: bold;
    border: solid 5px rgb(0, 179, 155);
    padding: 10px;
    transition: 0.1s;
    margin-left: -5px;
}
button:hover {
    color: rgb(74, 51, 204);
    background-color: rgb(0, 183, 255);
}
button:active {
    background-color: rgb(103, 212, 255);
}

.center {
    display: flex;
    justify-content: center;
}
.entry {
    display: grid;
    grid-template-columns: 1fr;
    justify-content: center;
    background-color: rgb(28, 26, 51);
    width: 60%;
    border: 5px solid rgb(74, 51, 204);
    margin: 10px;
    padding: 0 20px 15px 20px;
}
.entryheader {
    display: flex;
    justify-content: space-between;
    align-items: top;
}
.entrytext {
   display: flex;
   text-align: justify;
}

@media (min-width: 480px) and (max-width: 650px) {
    button {
        font-size: x-large;
    }
    .date {
        font-size: medium;
    }
}
@media (min-width: 400px) and (max-width: 450px) {
    button {
        font-size: large;
    }
    .date {
        font-size: medium;
    }
}
@media (max-width: 400px) {
    button {
        font-size: medium;
    }
    .date {
        font-size: medium;
    }
}