body {
    font-family: serif;
    text-align: center;
    margin: 0;
    padding: 0;
    background-color: #000000;
    color: #ffffff;
    background-image: url('bg.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-origin: content-box;
}

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: -1;
}

.container {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 10px auto 10px auto;
    padding: 30px;
    background: rgba(17, 17, 17, 0.8);
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

.text {
    position: relative;
    text-align: left !important;
    z-index: 1;
    max-width: 800px;
    margin: 10px auto;
    padding: 30px;
    background: rgba(17, 17, 17, 0.7);
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

h1 {
    color: #ffffff;
    font-weight: 700;
}

.countdown {
    font-size: 2em;
    margin: 30px 0;
}

.countdown span {
    display: inline-block;
    /* margin: 0 10px; */
    /* padding: 10px; */
    /*background: #333333;*/
    color: #ffffff;
    border-radius: 5px;
    min-width: 80px;
    font-weight: bold;
}

p {
    font-size: 1.2em;
    line-height: 1.8;
    font-weight: 500;
}

.hbox {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.image-section {
    margin-left: 20px;
    align-items: end;
}

.portrait {
    max-width: 300px;
    height: auto;
}

.patch {
    max-width: 500px;
    height: auto;
    margin: 0 auto;
}

.left {
    text-align: left !important;
}

@media (max-width: 640px) {
    .hbox {
        flex-direction: column;
        align-items: flex-start;
    }

    .portrait {
        max-width: 100%;
    }
}

a, a:visited {
    color: #916F4D;
}

a:hover {
    color: #F3BB76;
}
