/*assignment one css*/

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body{
    background-color: midnightblue;
    font-family: Arial, Helvetica, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
}

div{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    width: 500px;
    height: 500px;
    background: black;
}

#essay-title{
    width: 300px;
    height: 80px;
    background-color: deeppink;
    color: black;
    text-align: center;
    margin-left: 154px;
    border: 1px solid deeppink;
    border-radius: 10px;
    position: relative;
    z-index: 2;
    margin-bottom: 10px;
}

#essay-paragraph{
    width: 410px;
    height: 280px;
    background-color: white;
    color: black;
    padding: 80px 50px 50px;
    margin-left: 100px;
    border: 1px solid white;
    border-radius: 10px;
    position: relative;
    z-index: 1;
    margin-top: -50px
}

@media (max-width: 400px) {
    #essay-paragraph {
        padding: 60px 20px 20px;
    }
    #essay-title{
        padding: 60px 20px 20px;
    }
}