body {
    display: flex;
    flex-direction: column;
    background-color: rgb(224, 220, 220);
}

#color,
#rainbow,
#eraser,
#clear {
    padding: 8px 25px 8px 25px;
    border-radius: 5px;
    font-weight: 800;
    font-size: 20px;
    font-family: Arial, Helvetica, sans-serif;
    background-color: rgb(32, 31, 31);
    color: white;
    border: none;
}

#color:hover,
#rainbow:hover,
#eraser:hover,
#clear:hover {
    transform: translateY(-4px);
}

#color:active,
#rainbow:active,
#eraser:active,
#clear:active {
    background-color: rgb(56, 50, 50);
}

#inp {
    font-size: 20px;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 700;
}

.header {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 80px;
    font-weight: 800;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.content {
    display: flex;
    justify-content: center;
    align-content: center;
    margin-right: 80px;
    margin-left: -121px;
}

.grid {
    display: flex;
    flex-wrap: wrap;
    margin: 100px;
    margin-top: 35px;
    width: 512px;
    height: 512px;
    box-shadow: 10px 10px 5px gray;

}

.buttons {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 52px;
}

.rbg {
    width: 64px;
    height: 64px;
    border: none;
}