@import url('https://fonts.googleapis.com/css2?family=Agu+Display&display=swap');

img {
    float: left;
    margin: left 80px;
}

header {
    background-color: rgb(187, 219, 247);
}

nav {
    line-height: 120px;
    background-color: rgb(187, 219, 247);
    float: right;
    margin: 0 10px;
}

.container::after {
    content: "";
    clear: both;
}

.container {
    background-color: rgb(187, 219, 247);
    height: 160px;
    max-width: 1024px;
    padding: 15px;
    margin: 0 auto;
}

nav li {
    display: inline-block;
    text-align: center;
    margin: 0 5px;
    font-size: 20px;
}

a {
    text-decoration: none;
    color: black;
    transition: color 0.3s ease;
}

a:hover {
    color: grey
}

button {
    background-color: rgb(223, 221, 221);
    border-radius: 15%;
    font-size: 20px;
    border: none;
    padding: 10px;
    font-family: inherit;
}

.container p {
    text-align: center;
    font-size: 30px;
    font-family: "Agu Display", serif;
}
.write{
    display: block;
    margin: 0 auto;
}

.content{
    position: absolute;
    width: 70%;
    background-color: rgb(68, 170, 182);
}

.sidebar{
    position: absolute;
    left: 80%;
    background-color: blue;
    width: 10%;
}

.post{
    width: 80%;
    /* height: 200px; */
    border: 1px solid black;
    margin: 10px auto;
    padding: 10px;
}
.info{
    width: 70%;
    /* position: absolute; */

}

.post img{
    width: 25%;
    height: 30%;
    object-fit: contain;
    position: absolute;
    left:65%;
    top: 40px;
}
