* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: sans-serif;
}

body {
    font-family: "Roboto", sans-serif;
    min-height: 100vh;
    background: url(images/pinkblue.jpg) center / cover;
    display: flex;
    justify-content: center;
    align-items: center;
}

#contener {
    width: auto;
    height: 80vh;
    background-color: #fff5;
    backdrop-filter: blur(7px);
    box-shadow: 0 .4rem .8rem #0005;
    border-radius: .8rem;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

#Contener2 {
    padding: 30px;
    /* margin: 10px; */
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

#inputbox {
    width: 350px;
    height: 30px;
    border: 1px solid #ddd;
    border-radius: 10px;
    text-align: center;
    padding: 10px;
    overflow: hidden;
    outline: none;
}

#btn-get {
    height: 30px;
    width: 90px;
    color: rgb(255, 255, 255);
    background-color: #5784f5;
    border-radius: 6px;
    border: none;
    box-shadow: rgba(0, 0, 0, 0.363) 1px 1px;
}

#btn-get:hover {
    background-color: rgb(13, 138, 44);
    width: 93px;
}


/* get from codepen */

.copy-text {
    position: absolute;
    bottom: 25%;
    padding: 10px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    display: flex;
}

.copy-text input.text {
    color: rgb(45, 165, 61);
    padding: 10px;
    font-size: 16px;
    /* color: #555; */
    border: none;
    outline: none;
}

.copy-text button {
    padding: 10px;
    background: #5784f5;
    color: #fff;
    font-size: 18px;
    border: none;
    outline: none;
    border-radius: 10px;
    cursor: pointer;
}

.copy-text button:active {
    background: #809ce2;
}

.copy-text button:before {
    content: "Copied";
    position: absolute;
    top: -45px;
    right: 0px;
    background: #5c81dc;
    padding: 8px 10px;
    border-radius: 20px;
    font-size: 15px;
    display: none;
}

.copy-text button:after {
    content: "";
    position: absolute;
    top: -20px;
    right: 25px;
    width: 10px;
    height: 10px;
    background: #5c81dc;
    transform: rotate(45deg);
    display: none;
}

.copy-text.active button:before,
.copy-text.active button:after {
    display: block;
}

footer {
    position: absolute;
    bottom: 0%;
    font-size: 15px;
    padding: 15px;
    background-color: rgba(240, 255, 255, 0.692);
    border-radius: 0 0 .8rem .8rem;
}

.header {
    width: 100%;
    height: 50px;
    /* background-color: #fff5; */
    background-color: rgb(255, 255, 255);
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(7px);
    box-shadow: 0 .4rem .8rem #0005;
    border-radius: .8rem .8rem 0 0;
    position: absolute;
    top: 0%;
    font-size: 30px;
}

#home {
    color: rgb(0, 0, 0);
    margin: 20px;
}

#home:hover {
    color: royalblue;
}

#vlink {
    font-size: 15px;
    color: #ffffff;
    background-color: rgba(39, 11, 138, 0.692);
    padding: 5px;
    border-radius: 3px;
}