@import url('https://fonts.googleapis.com/css2?family=Roboto+Mono&display=swap');

/*
COLOR PALETTE
#DCDCDC
#474554
#ACA9BB
#BFE4D7
#89ADA0
*/


* {
  box-sizing: border-box;
}

body {
  background-color: #DCDCDC;
  color: white;
  font-family: 'Roboto Mono', monospace;
}

h1 {
  font-size: 100px;
  line-height: 1;
  margin: 0;
}

h1 .first-letter {
 color: #BFE4D7;
}

h2 {
  font-size: 40px;
  line-height: 1;
  margin: 0
}

address {
  font-family: 'Roboto', sans-serif;
  font-size: 20px;
  margin-bottom: 20px;
  margin-top: 20px;
}

a {
  color: #89ADA0;
}

a:hover {
  background: rgba(191, 228, 215, 0.5);
  border-radius: 5px;
  color: #DCDCDC;
}

.logo {
  height: 100px;
  width: 100px;
}

#card {
  bottom: 0;
  display: flex;
  height: 400px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: 0;
  width: 700px;
}

#content {
  border: 2px solid #303030;
  box-shadow: 0 0 15px grey;
  height: 100%;
  position: absolute;
  transition: transform 1s;
  transform-style: preserve-3d;
  width: 100%;
}

#front,
#back {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 20px;
  position: absolute;
  width: 100%;
  backface-visibility: hidden;
}

#front {
  background-color: #474554;
  justify-content: space-between;
}

#back {
  background-color: #ACA9BB;
  transform: rotateY(180deg);
}

#front-content {
  align-items: flex-end;
  display: flex;
  justify-content: space-between;
}

#logos {
  align-items: center;
  display: flex;
  flex: 1;
  justify-content: space-evenly;
}

.flip-wrapper {
  display: flex;
  justify-content: flex-end;
}

.flip {
  cursor: pointer;
  margin: 0;
  text-align: right;
}
