*{
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}
html{
	position: relative;
	left:0;
	top:0;
}
body{
  font-size: 1.2em;
  font-family: "Roboto", sans-serif;
  display: flex;
  flex-direction: row;
  align-items: start;
  justify-content: space-between;
  background-color:whitesmoke;
}
#aside, #main{
  padding: 2vh 2vw;
  display: flex;
  flex-direction: column;
  justify-content:stretch;
  row-gap: 2vh;
}
#aside{
	width: 30%;
	align-items: start;
}
#main{
	width: 70%;
	align-items: end;
	background-color: white;
}
#contacts, #form{
  text-align: center;
}
#summary, #pets{
  width: 100%;
}
.person{
	display: flex;
	flex-direction: row;
	justify-content: left;
	align-items: center;
}
#name{
  text-align: center;
  padding-left: 2vw;
}
td{
  padding: .1vh .2vh;
  text-align: start;
}
img:not(#foto,.pic>img){
  height: auto;
  width: 3vh;
}
#form{
	position: absolute;
	left: 0;
  	bottom: 1vh;
	width:30%;
  display: flex;
  flex-direction: column;
}
.form{
  outline: none;
  font-size: 1em;
  border-radius: 1vh;
}
.form:not(input[type=submit]):hover{
	border: .2vh solid seagreen;
}
.form:not(input[type=submit]){
  border: none;
  width: 25vw;
  padding: 0 .5vw;
  box-shadow: 0 0 .1vw 0 rgba(2, 2, 2, .2), 0 0 .1vw 0 rgba(2, 2, 2, .2);
}
input{
	height: 3.5vh;
}
textarea, input{
  width: 25vw;
  margin-bottom: 1vh;
}
input[type=submit]{
  width: 5vw;
  text-align: center;
  font-variant: small-caps;
  background-color: palegreen;
  border: .1vh solid seagreen;
}
input[type=submit]:hover{
  background-color: seagreen;
}
li{
  margin-left: 2vw;;
}
.td{
	padding-left: 1vw;
	vertical-align: middle;
}
#pets li{
	margin-top: 2vh;
}
.pet{
	box-shadow: 1vw 0.2vh 1vw 0 rgba(2, 2, 2, .1), 1vw 0.2vh 1vw 0 rgba(2, 2, 2, .1);
	margin-bottom: 2vh;
	width:100%;
	height: auto;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: left;
	vertical-align:bottom;
}
.caption{
	padding-left: 1vw;
	font-style: italic;
}
.pic img{
	border: 0.1vh solid crimson;
	width: 12vh; height: auto; border-radius: 50%;
}
.show{
	display: none;
}
@media only screen and (max-width: 768px){
  body{
    width: 100vw;
    overflow: auto;
    font-size: .8em;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    row-gap: 2.5vh;
  }
  #aside, #main{
	align-items: start;
	width: 90vw;
	background-color: white;
  }
  img:not(#Foto){
    height: auto;
    width: 3.2vw;
  }
td{
  padding: .3vw .8vw;
}
#summary, #pets{
  width: 90vw;
}
#inf{
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
	width: 70vw;
}
.hide{
	display: none;
}
.show{
	display: block;
}
}