body {
    width: 100%;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* display: flex; */
    /* justify-content: center; */
    font-family: Roboto, -apple-system, BlinkMacSystemFont, Segoe UI, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
	font-size: 14px;
	line-height: 1.5;
	color: #333;
}

h1, h2, h3, h4, h5, h6 {
	margin: 0 0 0.15em 0;
	font-weight: 400;
	line-height: 1.2;
}

h1 {
    text-align: center;
    font-size: 2.8em;
	font-weight: 700;
    color: rgb(255, 62, 0);
}
#container {
    display: flex;
    flex-direction: column;
    max-width: 500px;
    margin: auto;
}
dwane-timer {
    --dwane-timer-font-family: "Roboto Mono";
    --dwane-timer-weekday-font-size: clamp(1.5rem, 1.5vw, 2rem);
    --dwane-timer-date-font-size: clamp(1.5rem, 1.5vw, 2rem);
    --dwane-timer-time-font-size: clamp(1.5rem, 1.5vw, 2rem);
    --dwane-timer-countdown-font-size: 3vmax;
    opacity: 0;
    transition:opacity 0.4s ease-in;
}
dwane-timer:defined {
    opacity: 1;
}

#noSupport {
    display: none;
}

.subscription-container {
    text-align: center;
}

button {
    color: black;
    border: none;
    padding: 15px;
    border-radius: 5px;
    background: white;
    border: 2px solid rgb(255,62,0);
    cursor: pointer;
    font-size: large;
    font-weight: bold;
    text-decoration: none;
    margin-bottom: 10px;
}

nav {
    /* height: 57px; */
    width: 100%;
    display: block;
    border-bottom: 1px solid rgba(255,62,0,0.1);
    font-weight: bold;
    text-align: right;

}

a {
    text-decoration: none;
    padding: 1em 0.5em;
    display: block;
	color: inherit;
}

fieldset {
    margin-top: 5px;
}
legend {
    font-size: large;
    background-color: rgb(0, 0, 0);
    color: rgb(255, 255, 255);
    padding: 3px 6px;
    border-radius: 5px;
}


@media (min-width: 400px) {
	body {
		font-size: 16px;
	}
}

/* button[id^="unsub-"] {
    display: none;
} */
