:root {
    --grey: #0000005e;
}

body {
    font-family: sans-serif;
    background-color: #ADD8E6;
    display: flex;
    flex-flow: column wrap;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    margin: 0;
}

p {
    margin: 5px 20px;
    font-size: 13pt;
    text-align: justify;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    -ms-hyphens: auto;
    -moz-hyphens: auto;
    -webkit-hyphens: auto;
}

h2 {
    font-size: 20pt;
}

a, a:visited, a:hover, a:active {
  color: #1c2bff;
}

.text-div {
    width: 560px;
}

.top-to-bottom {
    display: flex;
    flex-flow: column wrap;
    align-items: center;
    justify-content: center;
}

.orange-text {
    color: #ecb417;
    font-size: 50pt;
    text-align: center;
    font-weight: bold;
    text-shadow: -1px -1px 0px var(--grey), 1px -1px 0 var(--grey),-1px 1px 0 var(--grey), 1px 1px 0 var(--grey);
}

.countdown-container {
    display: flex;
    flex-flow: row wrap;
    gap: 30px;
    margin: 0 auto;
}

.time-box {
    background-color: #000;
    color: #fff;
    padding: 15px;
    min-width: 30px;
    border: 5px solid #000;
    border-radius: 10%;
    text-align: center;
    font-weight: bold;
    font-size: 20pt;
}

.time-text {
    text-align: center;
    align-content: center;
    margin: 5px auto;
}