* {
    margin: 0;
    padding: 0;
}

.copied {
    display: flex;
    position: absolute;
    width: 100vw;
    height: 100vh;
    background-color: #8e44ad;
    font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
    align-items: center;
    justify-content: center;
    z-index: -1;
}

.copied div {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100vw;
    height: 15vh;
    background-color: #c6c6c6;
    opacity: 0.9;
}

h1 {
    font-size: 12vh;
    color: #FFF;
    text-shadow: 2px 2px #000;
}

.main {
    display: flex;
    flex-wrap: wrap;
    height: 100vh;
}

.color {
    width: 20%;
    cursor: pointer;
}

.inside {
    display: flex;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.copy {
    width: 100px;
    height: 40px;
    opacity: 0;
    font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
    text-align: center;
    line-height: 40px;
    border-radius: 5px;
    border: 3px solid #FFF;
    font-weight: bold;
    color: #FFF;
    pointer-events: none;
}

.inside:hover .copy {
    opacity: 1;
}