* {
  margin: 0;
  padding: 0;
  box-sizing: content-box;
}

body {

  display: flex;
    min-height: 70px;
  justify-content: center;
  align-items: right;
  	font-family: Georgia;

}

.buttons {
	display: flex;
    /*justify-content: space-around;
	 display: flex; */

	justify-content: space-around;
}

.buttons a {
  text-decoration: none;
  font-size: 28px;
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  background: #314652;
  color: #f1f1f1;
  border-radius: 50%;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, .5);
  transition: all .4s ease-in-out;
  
  

}

.buttons a:hover {
  transform: scale(1.1);
}

.table
{
	
	  display: flex;
background-color: #FAACA8;
background-image: linear-gradient(19deg, #FAACA8 0%, #DDD6F3 100%);

border-radius: 5px;

max-width: 100%;

	justify-content: space-around;


}




@media (max-width: 767px) {
    body{
        flex-direction: column;
    }

}