main {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 75vh;
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 600px;
    height: 450px;
    box-shadow: 0 0px 15px rgba(0, 0, 0, 0.2);
    border-radius: 20px;
}

#guessText {
    margin-top: 20px;
}

#guessInput {
    border: none;
    width: 320px;
    height: 25px;
    font-size: 18px;
    margin-top: 10px;
    margin-bottom: 20px;
    border-radius: 2.5px;
    border-width: 2px;
    border-color: #02B075;
    border-style: solid;
}

#notesInput {
    border: none;
    width: 320px;
    height: 25px;
    font-size: 18px;
    margin-top: 10px;
    margin-bottom: 10px;
    border-radius: 2.5px;
    border-width: 2px;
    border-color: #02B075;
    border-style: solid;
}

.notesStuff {
    margin-top: 50px;
}

.addStuff {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}
#addStuffButton {
    width: 50px;
    height: 50px;
}

#attemptsLabel {
    margin-top: 20px;
}

.smallContainer .goodButton {
    outline: none;
    border: none;
    width: 150px;
    height: 35px;
    color: #fff;
    padding: 8px 0;
    font-size: 14px;
    cursor: pointer;
    border-radius: 5px;
    margin-left: 10px;
    margin-right: 10px;
    background-color: #02B075;
    transition: transform 0.3s ease;
    transition: all 0.1s ease-in-out;
}

.smallContainer .goodButton:hover {
    transform: scale(1.05);
}

.smallContainer .goodButton:active {
    transform: scale(0.95);
}