body{
    font-family: "Noto Sans", serif;font-optical-sizing: auto;font-weight: 400 ;font-style: normal;font-variation-settings:"wdth" 100;
    font-size: 12px;
}
body.homepage, body.login {    
    background-color: #102A3D;
    padding: 0;
    margin: 0;
}
body.homepage h1, body.login h1 {font-size: 36px; color: #fff; font-weight: 300; margin:10px 0 0 0;}
body.homepage h1 strong {font-weight: 900;}
body.homepage h2, body.login h2 {font-size: 20px; color: #fff; font-weight: 300; margin:10px 0 0 0;}
body.login h2 {font-size: 18px; padding:50px 0 30px; text-transform: uppercase;}

.material-symbols-rounded {
  font-variation-settings:
  'FILL' 0,
  'wght' 400,
  'GRAD' 0,
  'opsz' 48
}
.material-symbols-rounded {
    font-size: 48px;
    opacity: .7;
}

.homepage-container, .login-container {
    max-width: 920px;
    margin: 0 auto;
    padding: 20px;
    text-align: center;
}
.page-background {
    background: linear-gradient(#102A3D,#46002D);
    height: 100vh;
    width: 100vw;
    position: absolute;
    z-index: -1;
}
.logo {
    width: auto;
    height: 100px;
    margin:50px  auto 0 auto;
}
.cta-button {
    border: 1px solid #fff;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    position: absolute;
    top:20px;
    right:20px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.cta-button:hover {
    background-color: #fff;
    color: #102A3D;
}

.homepage-illustration {height: 300px;overflow: hidden;}
.homepage-illustration>div{float: left; top:50%;    position: relative; transform: translateY(-50%);}
.homepage-illustration-links{width: 40%;}
.homepage-illustration-arrow{width: 20%;text-align: center;}
.homepage-illustration-ads{width: 40%; position: relative;}
.homepage-illustration-links img{
    width: 100px; 
    float: right;
    animation: slideIn 5s ease-in-out infinite;
}
.homepage-illustration-links img:nth-child(2){
    animation-delay: .5s;

}
.homepage-illustration-links img:nth-child(3){
    animation-delay: 1s;
}
.homepage-illustration-arrow img{width: 100px; margin: 0 auto; opacity: .2;}
.homepage-illustration-ads div{width: 200px;height: 80px;background-color: #fff;border-radius: 5px; position: relative;}
.homepage-illustration-ads .ad-1 {
    animation: fly-ad1 5s ease-out infinite;
    animation-delay: 0s;
}
.homepage-illustration-ads .ad-2 {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    animation: fly-ad2 5s ease-out infinite;
    animation-delay: 0s;
}
.homepage-illustration-ads .ad-3 {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    animation: fly-ad3 5s ease-out infinite;
    animation-delay: 0.2s;
}
.homepage-illustration-ads .ad-4 {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    animation: fly-ad4 5s ease-out infinite;
    animation-delay: 0.4s;
}
.homepage-illustration-ads .ad-5 {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    animation: fly-ad5 5s ease-out infinite;
    animation-delay: 0.6s;
}

/* Keyframes for burst animations from ad-1 */
@keyframes fly-ad1 {
    0% { transform: translate(0, 0); opacity: 1; }
    25% { transform: translate(0, 0); opacity: 0; }
    50% { transform: translate(0, 0); opacity: .5; }
    100% { transform: translate(0, 0); opacity: 1; }
}
@keyframes fly-ad2 {
    0% { transform: translate(0, 0); opacity: 0.5; }
    25% { transform: translate(350px, -90px); opacity: 0; }
    50% { transform: translate(0, 0); opacity: 0; }
    100% { transform: translate(0, 0); opacity: 0; }
}

@keyframes fly-ad3 {
    0% { transform: translate(0, 0); opacity: 0.5; }
    25% { transform: translate(350px, 150px); opacity: 0; }
    50% { transform: translate(0, 0); opacity: 0; }
    100% { transform: translate(0, 0); opacity: 0; }
}

@keyframes fly-ad4 {
    0% { transform: translate(0, 0); opacity: 0.5; }
    25% { transform: translate(400px, -100px); opacity: 0; }
    50% { transform: translate(0, 0); opacity: 0; }
    100% { transform: translate(0, 0); opacity: 0; }
}

@keyframes fly-ad5 {
    0% { transform: translate(0, 0); opacity: 0.5; }
    25% { transform: translate(380px, 10px); opacity: 0; }
    50% { transform: translate(0, 0); opacity: 0; }
    100% { transform: translate(0, 0); opacity: 0; }
}

/* Keyframes for sliding in from the left */
@keyframes slideIn {
    0% {
        transform: translateX(-150px);
        opacity: 0;
    }
    30% {
        transform: translateX(0);
        opacity: .5;
    }
    70% {
        transform: translateX(0);
        opacity: 1;
    }
    75% {
        transform: translateX(150px);
        opacity: 0;
    }
    100% {
        transform: translateX(-150px);
        opacity: 0;
    }
}
.homepage-container-features div{
    width: 29%;
    padding: 2%;
    float: left;
    text-align: left;
    color: #fff;
    font-size: 14px;
    font-weight: 200;

}

.homepage-container-about {
    color: #fff;
    text-align: left;
    max-width: 600px;
    line-height: 1.5;
    font-size: 14px;
    font-weight: 300;
    padding-bottom: 100px;
}

.g_id_signin {
    margin: 0 auto;
    width: 200px;
}
.login-icon { 
    font-size: 48px;
    margin: 100px auto 10px;
}
.footer {
    color: #fff;
    font-size: 12px;
    margin: 50px 0 20px;
    text-align: center;
}
.footer i {
    opacity: .5;
}

.footer a {
    color: #fff;
    text-decoration: none;
    opacity: .8;
}
.footer a:hover {
    opacity: 1;
}
.tag {
    color: #fff;
    font-size: 12px;
    margin: 20px 0 0 0;
    position: absolute;
    top: 0px;
    right: 160px;
    text-align: right;
    opacity: .7;
}
.login-tos {
    color: #fff;
    font-size: 12px;
    margin: 20px 0 0 0;
    text-align: center;
    opacity: .7;
}
.login-tos a {
    color: #fff;
    opacity: 1;
}
.screenshot {
    width: 100%;
    border-radius: 20px;
    margin: 30px auto;
    border: 10px solid rgba(0, 0, 0, .3);
}
@media (max-width: 768px) {
    .homepage-illustration {
        height: 200px;
    }
.homepage-illustration-arrow img {
    width: 60px;
}
.homepage-illustration-links img {
    width: 60px;
}
.homepage-illustration-ads div {
    width: 100px;
    height: 50px;
}
.homepage-container-features div {
    width: 250px;
    margin: 0 auto;
    float: none;
}
}
@media (max-width: 480px) {
    .homepage-illustration {
        height: 100px;
    }
    .homepage-illustration-arrow img {
        width: 40px;
    }
    .homepage-illustration-links img {
        width: 40px;
    }
    .homepage-illustration-ads div {
        width: 80px;
        height: 40px;
    }

}