*{
    font-family: sans-serif;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
a {
    text-decoration: none;
}
p {
    font-weight: 550;
    line-height: 30px;
}
.background {
    background-image: url('banner.jpg');
    /* position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    mix-blend-mode: overlay;
    background-color: rgb(135, 219, 177); */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    
}
.anim {
	position: relative;
	font-size: 1.5rem;
	animation: anim2 0.5s infinite;
}

@keyframes anim2 {
	0% {top:-3px}
	50% {top: 3px}
	100% {top:-3px}
}

.back_img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    mix-blend-mode: overlay;
    background: center repeat;
    background-size: 420px auto;
    background-image: url(pattern.svg);
    opacity: 0.2;
}
.wrap {
    height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    margin-top: 25px;
}
.content {
    background-color: #000000b5;
    color: azure;
    z-index: 2;
    margin: 10px;
    padding: 20px 5px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 400px;
    border-radius: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.ava {
    background-image: url(ava_coxmy.jpg);
    background-size: 120px;
    margin-bottom: 16px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    
}
.tittle_store{
    font-size: 26px;
    line-height: 32px;
    font-weight: bold;
}
.description{
    padding: 15px 0 15px 0;
    text-align: center;
}
.p_1 {
    padding: 10px 0 10px 0;
    font-size: 1.5rem;
    font-weight: 600;
}
.btns {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.btn_tg {
    font-weight: bold;
    line-height: 20px;
    margin: 10px 0;
    border-radius: 20px;
    font-size: 1.2rem;
    color: white;
    width: max-content;
    background-color: #2481cc;
    padding: 10px;
    display: flex; justify-content: space-between; flex-wrap: wrap;
    background-image: linear-gradient(270deg, rgba(100, 181, 239, 0) 48.44%, #64b5ef 75.52%, rgba(100, 181, 239, 0) 100%);
    background-repeat: no-repeat;
    animation: bg-move linear 5s infinite;
    cursor: pointer;
}

.btn_wp {
    font-weight: bold;
    line-height: 20px;
    margin: 10px 0;
    border-radius: 20px;
    font-size: 1.2rem;
    color: white;
    width: max-content;
    background-color: #1eb16c;
    padding: 10px;
    display: flex; justify-content: space-between; flex-wrap: wrap;
    background-image: linear-gradient(270deg, rgba(100, 181, 239, 0) 48.44%, #64efa9 75.52%, rgba(100, 181, 239, 0) 100%);
    background-repeat: no-repeat;
    animation: bg-move linear 5s infinite;
    cursor: pointer;
}

.info {
    z-index: 100;
    color: #646464;
    font-size: 0.9rem;
}

@keyframes bg-move {
    
    0%   { background-position: -500px 0; }
    100% { background-position: 1000px 0; }
}
