@import url('https://fonts.googleapis.com/css2?family=Kode+Mono:wght@400..700&display=swap');

body {
    background-color: #252a34;
    margin: 0;
    color: #f1a208;
    font-family: 'Kode Mono';
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    padding: 10px;
    width: 100%;
}

.logo {
    width: 150px;
    font-size: 20px;
    text-shadow: 0 0 5px #f1a208;
    user-select: none;
}

.dollar {
    color: #d67ab1;
    text-shadow: 0 0 5px #d67ab1;
}

.header-content {
    width: 100%;
    font-size: 18px;
}

.content {
    align-items: center;
    justify-content: center;
    display: flex;
    flex-direction: column;
    text-align: center;
}

.domain {
    font-size: 5em;
    font-weight: 500;
    text-shadow: 0 0 5px #7AE7C7;
}

.message {
    font-size: 2em;
    font-weight: 700;
}

.animation {
    animation: disappearReappear 1s infinite;
}

@keyframes disappearReappear {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
}