
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html{
    font-size: 90%;
}
body{
    background-image: linear-gradient(to right, #4F735C, #6126F4 );
    height: 100vh;
    width: 100vw;
    display: flex;
    align-items: center;
    justify-content: center;
}
section{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 1px solid gray;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
    width: 70%;
    margin: auto;
    border-top: 12px solid rgb(0, 0, 0);
    min-height: 350px;
}

h1{
    color: white;
    margin-top: .5rem;
    text-align: center;
    text-shadow: 2px 2px 4px #000000;
}
section div{
    margin: 1rem;
    width: 100%;
    height: 5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
}

section div #copy-code{
    margin-top: 1rem;
    background-color: rgb(5, 0, 145);
    cursor: pointer;
    padding: 4px 10px 4px 10px;
    text-align: center;
}

section div:last-child{
    display: flex;
    flex-direction: column;
}

section div:last-child #gradient-code{
    background-color: rgb(44, 24, 31);
    color: white;
    padding:.6rem 1rem;
    border-radius: 5px;
    border-left: 4px solid white;
    border-right: 4px solid white;
    font-weight: 500;
    letter-spacing: 2px;
    font-size: 1.2rem;
}
.btn:first-child{
background-color: rgb(79, 0, 0);


}
.btn:last-child{
background-color: rgb(0, 59, 73);
}
.btn{
    cursor: pointer;
    margin:0 10px 0 10px;
    color: white;
    font-weight: bold;
    padding: 6px 9px;
    border: none;
    border-bottom: 2px solid white;
    border-bottom-left-radius: 6px;
    border-bottom-right-radius: 6px;
}

.bimg{
    color: orange;
}
.btn:hover {
    background-color: rgb(6, 77, 76);
}