body {
    background-image: linear-gradient(180deg, #89b4fa 0%, #89dceb 100%);
    background-repeat: no-repeat;
    background-attachment: fixed;
    padding: 0 0;
}

.hello-block, .main-block, .end-block, .nav-side{
    background-color: black;
    color: white;
    
    /* THE FIX: This makes the black box only as wide as your text/table */
    width: 1300px; 
    
    /* This keeps the short block in the middle of the screen */
    margin-left: auto;
    margin-right: auto;
    margin-top: 20px;
    margin-bottom: 20px;

    /* Padding keeps the text from touching the black edges */
    padding: 25px;
}

body h1, p, a, h2 {
    font-family: "Bricolage Grotesque", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-variation-settings:
        "wdth" 100;
}

body a {
    text-decoration: none;
    color: white;
    font-size: 30px;

}

.hello-block {
    background-color: black;
}

.hello {
    color: white;
    margin: 10px;
    padding: 1px;
}

.hello h1 {
    text-align: center;
    background-image: linear-gradient(90deg, #fab387 0%, #94e2d5 100%);
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}

.main-block {
    /* margin: 10px 150px; */
    background-color: black;
    color: white;
    /* padding: 1px;
    padding-left: 30px;
    padding-bottom: 25px; */
    font-size: 20px;
}

table, th, td {
    border:1px solid white;
    text-align: center;
}

th, td {
    padding: 10px;
}

#controler-icon {
    background-image: linear-gradient(140deg, #cba6f7 0%, #fab387 100%);
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}

.end-block {
    /* margin: 10px 150px; */
    background-color: black;
    color: white;
    /* padding: 1px;
    padding-left: 30px;
    padding-bottom: 25px; */
    font-size: 20px;
}

#timer {
    display: flex;
    align-items: center;
    justify-content: left;
    gap: 20px;
    font-family: "Betania Patmos In", cursive;
    font-weight: 400;
    font-style: normal;
}

.time-part {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 60px;
}

#timer span {
    font-size: 1.3rem;
    font-weight: bold;
}

.time-part .label {
    text-transform: uppercase;
    color: #ffffff;
}

#tiktak {
    font-size: 40px;
}

#secondary_link a {
    color: #89b4fa;
}

#secondary_link a:hover {
    text-decoration: underline;
}

#secondary_link a:visited {
    color: #a6e3a1;
}