body {
    background-color: black;
    color: whitesmoke;
    display: flex;
    flex-direction: column;
    height: 100vh;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

header {
    display: flex;
    flex-direction: column;
    padding: 1rem;
    background-color: rgb(19, 19, 19);
}

header h1, header p {
    margin: auto;
    cursor: pointer;
}

header p {
    font-style: italic;
    color: rgb(151, 151, 151);
}


footer {
    display: flex;
    justify-content: center;
    margin-top: auto;
    padding: 1rem;
    color: rgb(155, 155, 155);
    background-color: rgba(19, 19, 19, 0.425);
}

#cuukie-wrapper {
    animation: spin 10s linear infinite;
    margin: 15em auto 0;
    width: fit-content;
    display: flex;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

#cuukie {
    height: 300px;
    width: 300px;
    border-radius: 46%;
}

#goal-text {
    color: rgb(0, 0, 0);
    text-align: center;
    font-size: 1rem;
    background-color: rgb(255, 255, 255);
    width: fit-content;
    display: block;
    margin: 0 auto;
    padding: .5rem 1rem;
    border: 1px solid rgba(245, 245, 245, 0.726);
    border-radius: 1em;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
    
    
    
}
#counter {
    margin: 3rem 0 1rem;
    padding: 0;
    font-size: 3em;
    text-align: center;
    color: rgb(255, 192, 109);
    font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-weight: bold;
}