.blob {
    width: 100%;
    box-shadow: 0 0 0 0 #000;
    transform: scale(1);
    animation: pulse 2s infinite
}

@keyframes pulse {
    0% {
        transform: scale(.95);
        box-shadow: 0 0 0 0 rgba(0, 0, 0, .7)
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px transparent
    }
    to {
        transform: scale(.95);
        box-shadow: 0 0 0 0 transparent
    }
}

.promocode {
    border-style: dashed;
    font-size: 2em;
    margin: auto;
    width: 50%;
    padding: 10px;
    text-align: center;
    display: block
}

.cta-button {
    display: inline-block;
    padding: .5rem 1rem;
    background-color: #07c;
    color: #fff;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 3px;
    transition: background-color .3s
}

.cta-button:hover {
    background-color: #005fa3;
    text-decoration: none
}

@media (max-width: 767px) {
    .hide-on-mobile {
        display: none
    }
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

.update-container {
    margin-top: 1rem;
    margin-bottom: 1rem;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
}

header .update-container {
    display: flex;
    align-items: center;
    margin: 0 auto;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
    justify-content: space-between;
}

header .update-container {
    background: #0c121e;
}

img.logo {
    max-width: 200px;
    margin-left: 0 !important;
    display: block;
}

.copy_button_block a {
    padding: 10px 35px;
    font-size: 16px;
    outline: none;
    border: 2px solid #237afd;
    color: #fff;
    background: #237afd;
    position: relative;
    border-radius: 50px;
    font-weight: 700;
    display: block;
    width: 100%;
    text-align: center;
    max-width: 210px;
    flex: 0 0 210px;
    width: 210px;
}

.copy_button_block a:hover {
    opacity: 0.8;
}


@media (max-width: 1025px) {
    header .update-container {
        flex-direction: column;
        justify-content: center;
    }

    .copy_button_block a {
        margin-top: 20px;
    }

    header {
        margin: 0 -10px;
    }
}
article img {
	display: block;
	max-width: 100%;
	border-radius: 10px;
	margin: 30px auto;
}

table {
	margin: 30px 0;
	width: 100%;
}
td, th {
	word-break: break-all;
	text-align: center;
	padding: 5px;
}
