
/* Email */

body{
    background: #201d1b;
}

#textin{
    position:relative;
    font-family:"PressStart2P";
    font-size: 15px;
}
.menu1{
    display: flex;
    align-items: center;
    position: absolute;
    margin-top: 10%;
    top: 250px;
    user-select: none;
}
#copy-text{
    color: rgb(255, 161, 10);
    text-decoration:underline;
    font-family:sans-serif;
    position: relative;
    width: max-content;
    height: max-content;
    border-radius: 6px;
    font-size: 22px;
    padding-left: 5px;
    padding-right: 5px;
}
.click{
    user-select: none;
}
.click:hover{
    cursor:pointer ;
    
}
.click::after{
    font-size: 9px;
    font-family: "PressStart2P";
    position: absolute;
    transition: all 500ms ease ;
    text-align: center;
    line-height: 20px;
    border-radius: 20px;
    color: rgba(0, 0, 0, 0);
    left: 0px;
    content: 'Нажми, чтобы скопировать';
    width: 100%;
    height: 20px;
    top: -20px;
    background: rgb(255, 2, 2,0);
}
.click:hover::after{
    color: rgb(0, 0, 0);
    text-shadow: 2px 2px 3px rgb(255, 161, 10);
    transition: all 200ms ease ;
    text-align: center;
    line-height: 25px;
    border-radius: 20px;
    width: 110%;
    height: 25px;
    top: -20px;
    left: -10px;
}

.contacts{
    justify-content: center;
    display: flex;
    margin-top: 10%;
    height: 400px;
    width: 400px;
    padding: 15px;
    position: relative;
    background: rgb(250, 245, 230);
    border-radius: 10px;
    backdrop-filter: blur(1px);
    box-shadow: 8px 8px 2px black;
}

#text{
    font-size: 20px;
    font-family: sans-serif;
    margin-top: 10%;
    top: 100px;
    max-width: 380px;
    position: absolute;
    user-select: none;
}

#btnGet{
    text-shadow: 2px 2px 2px rgb(11, 77, 11);
    color: rgb(250, 250, 250);
    font-size: 22px;
    font-family: sans-serif;
    display: flex;
    position: absolute;
    margin: 10%;
    top: 380px;
    width: 280px;
    height: 70px;
    border-radius: 10px;
    background: rgb(5, 172, 5);
    line-height: 70px;
    justify-content: center;
    transition: all 150ms ;
    box-shadow: 2px 2px 2px rgb(24, 92, 18);
    user-select: none;
}

#btnGet:hover{
    transform: scale(0.95);
    box-shadow: 1px 1px 1px rgb(24, 92, 18);
}
#btnGet:active{
    transform: scale(0.9);
    box-shadow: none;
}