* {
    box-sizing: border-box;
    margin: 0;
    color: #fff;
    font-family: Arial, Helvetica, sans-serif;
}

body {
    background-color: rgb(0, 26, 41);
    display: flex;
    align-items: center;
    height: 100vh;
    justify-content: space-evenly;
    flex-direction: column;
}

#image-container {
    display: none;
    background-color: #5865f2;
    height: 500px;
    width: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#image-container img {
    width: 60%;
}

button {
    background-color: #5865f2;
    color: #fff;
    outline: none;
    border: none;
    padding: 0.5rem 1rem;
    cursor: pointer;
    font-weight: bold;
    transition: all 100ms;
}

button:hover {
    background-color: #fff;
    color: #5865f2;
}

#hex-code-input {
    color: #5865f2;
    font-weight: bold;
    outline: none;
    border: none;
}

.input-container {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    width: 500px;
}
p {
    margin-bottom: 0.5rem;
}

input {
    height: 2rem;
    padding-left: 0.5rem;
}

input::placeholder {
    color: #959dec;
}
