* {
    margin: 0;
    padding: 0;
    font-family: Poppins;
}

body {
    background: #0e0e0e;
    display: flex;
    justify-content: center;
}

#wrapper {
    height: 100vh;
    width: 96%;
    display: flex;
    align-items: center;
}

.colorRow {
    width: 100%;
    height: 15%;
    display: flex;
    flex-direction: column;
}

.colorDiv {
    width: 100%;
    height: 25%;
}

.colorDiv:hover {
    box-sizing: border-box;
    border: 3px solid white;
    z-index: 1;
    cursor: pointer;
}

#extra {
    position: absolute;
    padding-top: 300px;
}

#colorMatcher {
    display: flex;
    align-items: center;
    gap: 5px;
    color: white;
}

#colorInputPicker {
    background: transparent;
    border: none;
    height: 45px;
    width: 45px;
    cursor: pointer;
}