
.roboto-medium {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.roboto-bold {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-style: normal;
} 

p { font-size: 1.7em;}
body {
    background-image: url(../img/coupling-header-neu-2023-Fairness.jpg);
    position: absolute;
    inset: 0;
    display: flex;
    place-content: center;
    align-items: center;
    overflow: hidden;
    backdrop-filter: blur(5px);
}
#fullsize {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 35%;
    height: 320px;
    padding: 20px;
    display: flex;
    align-content: center;
    justify-content: center;
    align-items: center;
    color: #FFF;
    text-transform: uppercase;

    background: rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.error { font-size: 4em; }

.btn {
    padding: 11px 20px;
    outline: none;
    border: none;
    border-radius: 5px;
    margin-right: 10px;
}
.btn a { 
    text-decoration: none;
    font-size: 1.1em;
    font-weight: 700;
}
.btn-first  {
    background: none;
    border: 2px solid orange;
}
.btn-first a { color: white;}
.btn-first:hover { background: orange;}

.btn-last  {
    background: orange;
    border: 2px solid transparent;
}
.btn-last a { color: white;}
.btn-last:hover { background: transparent; border: 2px solid orange;}

@keyframes float {
	0% {
		box-shadow: 0 5px 15px 0px rgba(0,0,0,0.6);
		transform: translatey(0px);
	}
	50% {
		box-shadow: 0 25px 15px 0px rgba(0,0,0,0.2);
		transform: translatey(-10px);
	}
	100% {
		box-shadow: 0 5px 15px 0px rgba(0,0,0,0.6);
		transform: translatey(0px);
	}
}
.image {
  width: 43%;
  position: absolute;
  top: -45px;
  right: -60px;
  display: inline-flex;
  justify-content: flex-end;
  
}
.image img {
    width: 48%;
    float: right;
    padding: 11px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 245, 222, 0.3);
    animation: float 6s ease-in-out infinite;
}

.end {
  position: absolute;
  bottom: 1%;
  right: 1%;
  width: 139px;
}

.end .logo {
  width: 91%;
}

@media(max-width: 1500px) and (min-width: 1200px) {
  #fullsize {
    width: 44%;
    height: 380px;
  }
}
@media(max-width: 1199px) and (min-width: 768px) {
  #fullsize {
    width: 70%;
    height: 400px;
  }
}
@media(max-width: 767px) {
  #fullsize {
    width: 91%;
    height: 400px;
  }
  .image {
    top: -45px;
    right: 30px;
  }
}