@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;900&display=swap');

body {
    margin: 0px;
}

#imgArea {
    width: 62%;
    width: 62vw;
    height: 750px;
    height: 40vw;
    background-color: grey;
    background-image: url("cb_main_gx.png");
    background-size: cover;
    background-repeat: no-repeat;
    float: right;
    position: absolute;
    right: 0px;
    top: 0px;
}

#contentArea {
    width: 38%;
    width: 38vw;
    height: 750px;
    height: 40vw;
    background-color: white;
    background-image: url("https://metamorphus.de/Asset/textures/paper.jpg");
    background-position: top right;
    background-size: cover;
    position: absolute;
    left: 0px;
    top: 0px;
    text-align: center;
}

#content {
    padding-top: 30px;
    padding-top: 5vw;
    padding-left: 20px;
    padding-right: 20px;
    color: #351C08;
    font-family: Lato, Arial, Helvetica, sans-serif;
}

#title {
    width: 70%;
    margin-bottom: 30px;
}

#description {
    font-size: 17px;
    font-weight: 400;
    color: #351C08;
    max-width: 400px;
    margin: auto;
}

#countdownHolder {
    background-color: #351C08;
    padding: 10px;
    padding-left: 25px;
    padding-right: 25px;
    border-radius: 10px;
    display: inline-block;
    letter-spacing: 3px;
    margin-top: 20px;
}

p {
    margin: 0px;
    color: #E0D7CE;
}

#countdown {
    font-size: 40px;
    font-weight: 800;
}

.dots {
    font-weight: 400;
    opacity: 0.5;
}

#countdownInfo {
    display: inline-block;
    font-size: 15px;
    font-weight: 400;
    margin-top: -20px;
}

#comicLink {
    background-color: #351C08;
    padding: 10px;
    padding-left: 25px;
    padding-right: 25px;
    border-radius: 10px;
    color: #E0D7CE;
    text-decoration: none;
    font-size: 35px;
    font-weight: 800;
    margin-top: 15px;
    display: none;
}

#comicLink:hover {
    background-color: #6C5343;
}


@media only screen and (max-width: 800px) {
    #content {
        padding-top: 5px;
    }

    #title {
        margin-bottom: 5px;
    }

    #countdownHolder {
        padding: 0px;
        background-color: transparent;
        letter-spacing: 2px;
        border-radius: 0px;
        margin-top: 0px;
    }

    p {
        color: #351C08;
    }

    #countdown {
        font-size: 25px;
    }

    #description {
        font-size: 12px;
    }

    #comicLink {
        font-size: 15px;
    }
}