.losenge-button {
    display: inline-block;
    text-align: center;
    background: #fff;
    color: #272727!important;
    font-size: 1.7vw;
    border-style: solid;
    border-width: 3px;
    border-color: #272727;
    border-radius: 8em;
    padding: 0.9rem 3rem 0.5rem 3rem;
    margin-bottom: 1rem;
    margin-right: 1rem;
    transition: all 0.4s ease-out;
    text-decoration: none;
    letter-spacing: -0.4px;
}

.losenge-button:hover{
    background: #272727;
    color: #fff!important;
    transform: translate(0px, -5px);
}

.bluescreen {
    background-color: blue;
    width: 100vw;
    height: 130vh;
    display: block;
    color: blue;
    position: absolute;
    top: -10vh;
    left: 0;
    z-index: 1000;
}

body {
	font-weight:normal!important;
}


@keyframes GrowingLink {
	0% {
		transform:scale(1.0);
	}
	50% {
		transform:scale(1.2);
	}
	100% {
		transform:scale(1.0);

	}
}

.bigger-button {
	font-size:1.7vw;
	animation: 2s ease-out 1s GrowingLink;
	animation-iteration-count:infinite;
}

.alts-all {
	font-feature-settings: "ss01";
}

@keyframes strike{
  0%   { width : 0; }
  100% { width: 100%; }
}
.strike {
  position: relative;
}
.strike::after {
  content: ' ';
  position: absolute;
  top: 44%;
  left: 0;
  width: 0%;
	border-radius:5px;
  height: 10px;
  background: #222;
  animation-name: strike;
	animation-delay:0.1s;
  animation-duration: 0.5s;
  animation-timing-function: linear;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
}

@media only screen and (-webkit-min-device-pixel-ratio: 2) and (max-device-width: 600px){
.hamburger {
    -ms-transform: scale(1.0)!important;
    -webkit-transform: scale(1.0)!important;
    transform: scale(1.0)!important;
    top: 0.3em!important;
}}


@media screen and (max-width: 55em){
.content {
    height: auto;
    min-height: 0;
    flex-direction: column;
    margin-top: 13vw;
	}

.losenge-button {
    display: block!important;
    text-align: center;
    background: #fff;
    font-size: 4vw;
    border-style: solid;
    border-width: 2px;
    width: fit-content;
    padding: 0.7rem 1.5rem 0.5rem 1.5rem;
    margin-bottom: 0rem;
	margin-top:1rem;
    margin-right: 1rem;
    }
