#container {
    display: flex;
    flex: 1;
    flex-direction: column;
    flex-wrap: wrap;    

    justify-content: center;
}

.header, .pick, .result, .tally {
    margin: 20px;
    border: 4px solid black;
}

.pick, .result, .tally, #newG-id {
    padding: 20px;
}

.header, #round-id {
    text-align: center;
}

.pick {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#pick-id, #round-id {
    font-size: 25px;
    font-weight: bold;
    margin: 0 ;
}

#choices-id {
    display: flex;
    margin-top: 20px;
    gap: 20px;
}

.result {
    display: flex;
    flex: 1;
    justify-content: center;
}

.left {
    display: flex;
    flex: 1;
    flex-direction: column;
    justify-content: center;
}

.right {
    display: flex;
    flex: 1;
    justify-content: center;
    align-items: center;
}

.left, .right {
    padding: inherit;
    margin: inherit;
    border: inherit;
    
    font: 20px;
    font-weight: bold;
}

#newG-id {
    text-align: center;
}

#newG-btn {
    font-size: 30px;
    background-color: aliceblue;
    border-radius: 8px;
    border: 1px solid grey;
    padding: 10px 30px;
}

.score {
    text-align: center;
}

.footer {
    text-align: center;
}

#main-cont {
    display: flex;
    flex: 1;
    flex-direction: column;
    height: 100vh;
    width: auto;
}

body {
    margin: 0;
}

.footer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
} 

#footer-icon {
    width: 16px; 
    height: 16px;
}