* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    border: none;
    outline: none;
    font-family: "Poppins", sans-serif;
}

body{
    height: 100vh;
    background-color: #448aff;
}

.wrapper{
    width: 410px;
    background-color: white;
    padding: 30px 30px;
    border-radius: 8px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 20px 25px rgba(60, 60, 100, 0.15);
}

.wrapper h2{
    text-align: center;
    margin-bottom: 32px;
    letter-spacing: 1px;
    font-family: sans-serif;
    font-size: 30px;
    color: #0558b7;
}

#output-gradient{
    width: 100%;
    height: 35vmin;
    border-radius: 5px;
}

#output-color-code{
    background-color: #f1f5fc;
    font-size: 2.7vmin;
    font-weight: 500;
    color: #044db4;
    width: 100%;
    padding: 15px 10px;
    border-radius: 5px;
    border: 1px solid #cfd5d5;
    margin: 20px 0 40px 0;
}

.btn-container{
    display: flex;
    justify-content: space-around;
}

.btn-container button{
    background-color: #2e80b3;
    min-width: 42%;
    padding: 12px 0;
    color: white;
    border-radius: 7px;
    font-size: 3vmin;
    margin-bottom: 8px;
    font-weight: 500;
    cursor: pointer;
}

.btn-container button:nth-last-of-type(1){
    background-color: #ae7617;
}

.btn-container button:nth-last-of-type(1):active{
    background-color: #1bb916;
}