.linksButtons{
  height: auto;
  width: auto;
  transition: 0.1s;
  box-shadow: 3px 3px 3px black;
}

.linksButtons:hover{
  width: 100px;
  height: auto;
  transition: 0.1s;
}

.linksButtons:active{
  box-shadow: 0px 0px 0px black;
}

.header{
  border: 5px inset red;
  background-color: blueviolet;
  border-radius: 30px;
  width: 500px;
}

.a{
  text-decoration: none;
  color: white;
  background-color: black;
  padding: 3px;
  border-radius: 30px;
  border: 4px inset red;
  transition: 0.5s;
  margin-right: 5px;
  box-shadow: 2px 2px 2px black;
  margin: 0 auto;
}
.a:hover{
  transition: 0.5s;
  color: white;
  background-color: red;
  color: yellow;
  border: 4px inset green;
}

.a:active{
  box-shadow: 0px 0px 0px black;
  background-color: yellow;
  border: 4px inset orange;
  color: black;
}
.p{
  background-color: rgb(255, 102, 0);
  padding: 10px;
  border: 4px inset red;
  border-radius: 30px;
  text-align: center;
}
.menu{
  background-color: red;
  width: 100%;
  color: bisque;
  padding: 5px;
  padding-bottom: 30px;
  border-radius: 15px;
  margin-top: 15px;
  margin-left: -5px;
  text-align: center;
}

.links{
  background-color: gray;
  height: auto;
  width: 50%;
  margin-right: 100px;
  border: 4px inset blueviolet;
  padding: 3px;
  box-shadow: 4px 4px 4px black;
  margin: 0 auto;
}

.menuayar{
  display: inline;
}


@media screen and (max-width: 695px){
  .menuayar{
    display: block;
    margin-bottom: 20px;
  }
}