@font-face{font-family:HelveticaNeueLTArabic-Bold;src:url(../fonts/HelveticaNeueLTArabic-Bold.ttf);font-weight:bold}


body {
    margin: 0;
    background-color: #03a9a6;
    color: white;
    font-family: 'HelveticaNeueLTArabic-Bold';
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    overflow: hidden;
}

.logo {
    width: 250px;
    height: auto;
    opacity: 0;
    top: 80px;
    position: relative;
}
.logo2 {
    width: 250px;
    height: auto;
    opacity: 0;
    top: 80px;
    position: relative;
}

h1 {
    color: white;
    font-size: 48px;
    text-align: center;
    opacity: 0;
    line-height: 58pt;
}

/* Animations */
@keyframes slideFromTop {
    0% { top: -150px; opacity: 0; }
    100% { top: 0; opacity: 1; }
}

@keyframes slideFromBottom {
    0% { top: 150px; opacity: 0; }
    100% { top: 0; opacity: 1; }
}

@keyframes scaleDown {
    0% {
        transform: scaleX(2);
        opacity: 1;
    }
    60% {
        transform: scaleX(0.8);
        opacity: 1;
    }
    100% {
        transform: scaleX(1);
        opacity: 1;
    }
}

/* Start hidden, add animation class on button click */
.animate-top { animation: slideFromTop 1s ease-out forwards; animation-delay: 0.2s; }
.animate-scale { transform-origin: center; animation: scaleDown 1s ease-out forwards; animation-delay: 0.8s; }
.animate-bottom { animation: slideFromBottom 1s ease-out forwards; animation-delay: 0.2s; }

.animated-wrapper{
 overflow: hidden;
  display: inline-block;
}
#startBtn {
    position: relative;
    box-shadow: 2px 4px 0 2px rgba(0,0,0,0.1);
    border: .5em solid rgba(3, 169, 166, 0.8);
    font-size: 2em;
    line-height: 1.1em;
    color: #03a9a6;
    background-color: white;
    margin: auto;
    border-radius: 50%;
    height: 10em;
    width: 10em;
    overflow: visible; /* So the sonar can show outside */
    z-index: 1;
}

#startBtn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    height: 10em;
    width: 10em;
    margin-top: -5em;
    margin-left: -5em;
    border-radius: 50%;
    background: rgba(256, 256, 256, 1);
    z-index: -1;
    animation: sonarWave 2s infinite;
}

@keyframes sonarWave {
    0% {
        transform: scale(0.8);
        opacity: 0.5;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.orange-circle-button:hover {
    color: white;
    background-color: #03a9a6;
    text-decoration: none;
    border-color: white;
}


.orange-circle-link-greater-than {
    font-size: 1em;
}
@keyframes lightningFlash {
    0%   { background-color: black; }
    20%  { background-color: white; }
    40%  { background-color: black; }
    60%  { background-color: white; }
    100% { background-color: black; }
}

.flash-effect {
    animation: lightningFlash 0.6s ease-in-out;
}
