/*style.css*/
@media only screen and (max-width: 600px)
{
  .container
  {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    margin-top: 50px;
  }

  .box
  {
    width: 40%;
    color: black;
    font-size: 2vw;
    text-decoration: underline;
    padding: 10px;
    border: 6px solid black;
    text-align: center;
    transition: all 0.4s ease;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 10px;
  }

  #me
  {
    margin-top: 40px;
    animation-name: imagememove;
    animation-duration: 4s;
    position: relative;
    width: 50%;
  } 
}

/*about.css*/
@media only screen and (max-width: 600px)
{
  .newbox
  {
    width: 100%;
    color: black;
    font-size: 13px;
    padding: 10px;
  }

  #rez
  {
    display: none;
  }

  #rezdown
  {
    display: block;
  }
}

/*pro.css*/
@media only screen and (max-width: 600px)
{
  .t
  {
    font-size: 17px;
  }

  .conainerpro
  {
    flex-direction: column;
  }
}