:root {
    --bg: #1e2345;
    font-size: 10px;
}

body {
    background-color: var(--bg);
    display: grid;
    font-family: "Roboto Mono", monospace;
    height: 100vh;
    margin: 0;
    place-items: center;
}

p {
    color: var(--bg);
    font-size: 3rem;
    font-weight: normal;
    margin: 0;
}

button {
    background: var(--bg);
    border-radius: 100px;
    border: none;
    color: white;
    cursor: pointer;
    font-size: 1.9rem;
    outline: none;
    padding: 2rem 4rem;
    text-align: center;
    transition: opacity 0.4s ease-in-out;
}

button:hover {
    opacity: 0.8;
}

.container {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 30px;
    height: 320px;
    padding: 20px;
    position: relative;
    width: 50%;
}

@media only screen and (max-width: 1024px) {
    .container {
        width: 70%;
    }
}

.color-card {
    background: var(--bg);
    border-radius: 30px;
    box-shadow: 0px 0px 40px 20px rgba(44, 44, 44, 0.302);
    height: 280px;
    left: -50px;
    position: absolute;
    top: 40px;
    width: 280px;
}

.content {
    margin-left: 42%;
}

.title {
    color: var(--bg);
    font-size: 4rem;
    margin-bottom: 20px;
}

.color-number {
    color: var(--bg);
    margin: 30px 0;
}