*{
    margin:0;
    padding:0;
}

body{
    background:#fff0c1cf;
    display:flex;
    justify-content:center;
    align-items:center;
    flex-direction:column;
    text-align:center;

    height:90vh;
    gap:50px;
}



img{
    width:400px;
}

h1{
    font-size:30px;
    color:#003366
}

p{
    font-size:20px;
}
p a{
    color:#003366
}


@media only screen and (max-width: 700px) {


    body{
      display:flex;
      justify-content:center;
      align-items:center;
      flex-direction:column;

      height:90vh;
      gap:50px;
    }

    img{
        width:300px;

    }

    h1{
        font-size:25px;
    }

    a{
        font-size:15px;
    }


}