@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Poiret+One&family=Russo+One&display=swap');

/*Common*/

* {margin: 0px}
body {
  min-width: 600px;
  max-width: 100vw;
}

/*Header*/

header {
  display: flex;
  box-sizing: border-box;
  width: 100vw;
  height: 150px;
  padding: 50px;
  justify-content: space-between;
  align-items: center;
  background-color: bisque;
}
label {
  font-family:"Russo One", sans-serif;
  font-style: normal;
  font-size: 30px;
  font-weight: 900;
  letter-spacing: 10px;
  color: darkblue;
}
#logo {
  width: 135px;
  height: 135px;
}

/*Table*/

table {
  width: 100vw;
  padding: 10px;
  align-content: center;
  align-items: center;
  text-align: center;
  border-spacing: 0px 10px;
}
caption {
  height: 50px;
  font-family: "Russo One", sans-serif;
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 2px;
  align-content: inherit;
  align-items: inherit;
  text-align: inherit;
  background-color: darkblue;
  color: bisque;
}
thead {
  height: 50px;
  font-family: "Russo One", sans-serif;
  font-size: 20px;
  font-weight: 400;
  background-color: white;
}

.raw {
  height: 100px;
  font-family: "Poiret One", sans-serif;
  font-weight: 900;
  font-style: normal;
  font-size: 20px;
  background-color: burlywood;
}
.photo {
  width: 100px;
  height: 100px;
  margin: 15px;
  border-radius: 50%;
  border: 2px solid black;
}
.button {
  box-sizing: border-box;
  width: 250px;
  height: 100px;
  padding: 10px;
  border: 2px darkblue solid;
  border-radius: 10px;
  font-family: "Poiret One", sans-serif;
  font-weight: 400;
  font-style: normal;
  text-decoration: none;
  background: darkblue;
  color: antiquewhite;
}
.button:hover {
  background: antiquewhite;
  color: darkblue;
}