body{
    margin: 0;
    padding: 0;
    margin: 0 auto;
}

.dev-release{
   display:flex;
    flex-direction: column;
    height: 100vh;
    width: 100vw;
    justify-content: center;
    align-items: center;
}
.dev-release h1{
    font-family: "Open Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
    font-variation-settings:
      "wdth" 100;
    font-size: 28px;
    text-transform: uppercase;
      width: 500px;
      text-align: center;    
}
.dev-release img{
    height: 180px;
    width: 100%;
    display: block;
}
.dev-release p{ 
    background: #F6F6F8;
    padding: 30px;
    border-radius: 10px;
    font-family: "Open Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-variation-settings:
      "wdth" 100;
    font-size: 16px;
      width: 500px;
      text-align: center;
}
@media (max-width: 767px){
    .dev-release img{
        height: 100px;
        width: 100%;
        display: block;
    }
    .dev-release h1{
        font-size:20px;
    }
    .dev-release p{
        width: 300px;
    }
}