:root {
	font-size: 10px;
	line-height: 1.5;
	font-family: arial;
	background-color: #eeeded;
}
	

html, body {
    height: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.top {
	display: flex;
	flex-direction: row;
	justify-content: center;
	width: 85%;
	position: absolute;
	top: 25%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 1000;
}

.image {
	width: 20%;
	min-width: 100px;
	max-width: 250px;
	padding-right: 20px;
}

img {
	width: 100%;
	height: auto;
}
	
.flex-container {
	width: 100%;
    height: auto;
    display: flex;
    flex-direction: row;
    background-color: white;
    text-align: center;
    justify-content: center;
	padding: 5%;
    border-radius: 15px;
}

.contact {
	margin-right: 40px;
}

.right {
	text-align: right;
}

.bib {
	background-color: red;
	color: #ffffff;
	text-align: center;
	margin-bottom: 40px;

}

.bib span {
  display: inline-block;
  font-size: 60px;
  font-weight: bold;
  color: #fff;
  white-space: nowrap;
  animation: flip 3s infinite;
  animation-delay: calc(1s * var(--i))
}

@keyframes flip {
  0%,80% {
    transform: rotateY(360deg) 
  }
}

.list {
	white-space: nowrap;
	text-align: left;
}



@media (min-width: 20em) {
  :root {
    font-size: calc(1rem + ((1vw - 0.48rem) * 0.6944));
  }
}