* {
    margin: 0;
    padding: 0;
    font-size: 17px;
    font-family: arial;
    box-sizing: border-box;
}

a {
    text-decoration: none;
    color: rgb(100, 100, 100);
}

h1 {
    font-size: 35px;
    text-align: center;
}

h2 {
    font-size: 25px;
}

header {
    width: 100%;
    height: 70px;
    padding: 0 10%;
    border-bottom: 2px solid rgb(240, 240, 240);
    position: fixed;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgb(255, 255, 255);
}

main {
    padding: 120px 10%;
}

main,
form {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 15px;
}

form {
    width: 250px;
}

form input,
form button {
    width: 100%;
}

input {
    padding: 5px 20px
}

.btn {
    padding: 10px 20px;
    border: none;
    border-radius: 2px;
    cursor: pointer;
    color: rgb(255, 255, 255);
    background: rgb(0, 20, 255);
}

.red {
    background: rgb(255, 0, 0);
}

.post {
    width: 100%;
    margin: 10px 0 50px 0;
    padding: 40px;
    border: 2px solid rgb(240, 240, 240);
    border-radius: 2px;
}

.small {
    font-size: 12px;
    color: rgb(100, 100, 100);
}

#menu {
    display: flex;
    gap: 30px;
    list-style: none;
}

#latest-posts,
#my-post-list {
    width: 100%;
}