*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

body{
    background-image: linear-gradient(to right ,#34cfeb, #eb3477);
    width: 100vw;
    height: 100vh;
}

.container{
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 40px;
}


/* button section */
.buttons{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}


#btn1, #btn2{
    font-size: 1em;
    padding: 5px 25px;
    border-radius: 15px;
    border: none;
    box-shadow: 5px 5px 6px 0px #0000003d;
    font-weight: 400;
}

#btn1{
    background-color: #000000c7;
    color: rgba(255, 255, 255, 0.911);
}

#btn2{
    background-color: #39f8ff;
    color: black;
}

#btn1:hover{
    box-shadow: none;
}

#btn2:hover{
    box-shadow: none;
}

/* buttons section close */

.texts h3{
    color: white;
    text-transform: capitalize;
    font-weight: 700;
    font-size: 16px;
}

.texts{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
    width: 100vw;
}

.copy-code{
    width: 314px;
    background-color: rgb(255 255 255 / 7%);
    border-left: 2px solid white;
    border-radius: 5px;
    cursor: pointer;
}

.copy-code p{
    font-size: 15px;
    padding: 10px 15px;
    color: white;
}

#icon{
    top: 31px;
    left: 146px;
    position: relative;
    color: #ffffffd1;
    display: none;
}