*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Poppins",sans-serif;
}
body{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: url(bg.png) no-repeat center center fixed;
    background-size: cover;
}
.wrapper{
    width: 80vmin;
    background-color: #fff;
    padding: 40px 30px;
    border-radius: 8px;
    position: absolute;
    transform: translate(-50%,-50%);
    left: 50%;
    top: 50%;
    box-shadow: 0 20px 25px rgba(60,60,100,0.15);
}
#output-color{
    width: 100%;
    height: 35vmin;
    border-radius: 5px;
}
#output-code{
    background-color:#fff;
    font-size: 2.3vmin;
    font-weight: 400;
    color: #141516;
    width: 100%;
    padding: 15px 10px;
    border-radius: 20px;
    margin: 20px 0 40px 0;
}
.btn-container{
    display: flex;
    justify-content: space-around;
}
.btn-container button{
    background-color: #ffc799;
    min-width: 40%;
    padding: 15px 0;
    color: #141516;
    border-radius: 30px;
    font-size: 2.6vmin;
    font-weight: 500;
    cursor: pointer;
}