html, body {
    margin: 0;
    padding: 0;
}

@keyframes pulse {
    0% { opacity: 0.6; }
    50% { opacity: 1; }
    100% { opacity: 0.6; }
}

.splash {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    background-color: #3C4F76;
}

.splash__title {
    color: #EDFFFB;
    font-family: 'Roboto', sans-serif;
    font-size: 40px;
    margin-bottom: 16px;
}

.splash__content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.splash__bar {
    width: 120px;
    height: 6px;
    background-color: #EDFFFB;
    border-radius: 3px;
    margin-bottom: 12px;
    animation: pulse 1.5s ease-in-out infinite;
}

.splash__text {
    color: #EDFFFB;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
}

.splash__contact {
    background-color: #edfffb33;
    color: #ffeded;
    border: 1px solid #EDFFFB;
    border-radius: 4px;
    padding: 8px 16px;
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    margin-top: 24px;
    cursor: pointer;
    text-decoration: none;
    transition: background-color 0.3s, transform 0.2s;
}

.splash__contact:hover {
    background-color: #edfffb4d;
    transform: translateY(-2px);
}

.splash__contact:active {
    transform: translateY(0);
}

.splash__delayed {
    display: none;
    color: #EDFFFB;
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    margin-top: 16px;
    opacity: 0.8;
}
