/* styles.css */
.popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
}

.popup-content {
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
    position: relative;
    height: 30rem;
    width: 25rem;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    border-radius: 10px;

}

.close {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 30px;
    cursor: pointer;
}

/* Form css  */
form{
    display: flex;
    justify-content: center;
    align-items:flex-start;
    flex-direction: column;
}

input{
    width: 20rem;
    height: 2rem;
    margin: 8px 0;
    padding: 0 1rem;
}

textarea{
    width: 349px;
    height: 206px;
}

#submit-blog{
    margin: 1rem auto;
    width: 100%;
    height: 33px;
    background-color: #3c2796e3;
    border: none;
    border-radius: 10px;
    color: white;
    font-family: bold;
}

@media screen and (max-width: 400px) {

    input{
        width: 13rem;
        height: 2rem;
        margin: 8px auto;
        padding: 0 1rem;
    }
    textarea{
        width: 240px;
        height: 165px;
    }

  }