@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@800&display=swap');


body header {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700; /* bold */
    font-size: 14px;
}

.header .date-block {
    display: flex;
    align-items: center;
    text-align: center;
    text-transform: uppercase;
    margin: 0 0 30px 0;
    letter-spacing: -.03em;
    position: relative;
    z-index: 3
}

.header .date-block .dt-block {
    background: rgba(0,0,0,.45);
    border: 1px solid #fff;
    /*backdrop-filter: blur(14.4px);*/
    /*-webkit-backdrop-filter: blur(14.4px);*/
    padding: 11px 10px;
    max-width: 350px;
    width: 100%;
    cursor: pointer
}

.header .date-block .dtb-1 {
    border-radius: 7px 0 0 7px
}

.header .date-block .dtb-2 {
    border-radius: 0 7px 7px 0
}

.header .date-block .white-block {
    background: #fff;
    padding: 18px 20px;
    color: #151515;
    border-radius: 7px;
    position: relative;
    z-index: 2;
    cursor: pointer
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


:root {
    --color-white: #ffffff;
    font-size: calc(.7vw + .6vh);
}

html {
    width: 100%;
    height: 100%;
}
html, body {margin: 0; overflow: hidden}
body {
    color: var(--color-white);
    font-family: 'Open Sans', sans-serif;
    background: linear-gradient(to top, #050506, #121518)

}

main {
    height: 100vh;
    display: flex;
    /* justify-content: space-around; */
    /* justify-content: space-evenly; */
    flex-direction: column;;
}

.hero{
    display: flex;
    flex-direction: column;
    gap: 5rem;
}

.hero-section{
    display: flex;
    justify-content: center;
    align-items: center;
}
h1 {
    font-size: 4.7rem;
}
h2{
    font-size: 4rem;
    white-space: nowrap;
}
.tgme_action_button_new {
    color: inherit; 
    text-decoration: none; 
    cursor: pointer;
}
h1, h2, .losung{
    text-align: center;
}
h1, h2 {
    margin: 0;
}
p{
    display: flex;
    align-items: center;
    justify-self: center;
}
.losung p:not(:last-child)::after {
    content: "";
    display: inline-block;
    width: 1rem; 
    height: 1rem;
    background-size: contain;
    background-repeat: no-repeat;
    margin-left: 1rem;
    margin-right: 1rem;
}
.losung{
    display: flex;
}  
img{
    width: 100%;
}

.img{
     width: 100vw;
}

.img-telegram{
    width: 5rem;
}

.main-content{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

header, .botlink{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

/* header{
    margin-top: 20rem;
} */
header{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-top: 5rem;
}

button {
    all: unset;
    padding: 1rem;
}

.custom-button{
    /* width: 30rem; */
    background-color:#2AABEE;
    border-radius: 3rem;
    animation: pulse 2s infinite;
    padding: 1.5rem;
}

.lackoftelegrambutton{
    font-size: 2rem;
    display: flex;
    justify-content: center;
    color: rgb(179, 179, 179);
    text-shadow: 0px 5px 5.32px rgba(0, 0, 0, 0.19);
}


.button-telegram{
    display: flex;
    justify-content: center;
    gap: 1rem;
    align-items: center;
}

.div-telegram{
    display: flex;
    align-items: center;
    /* position: relative; */
}

/* .wrapper > *:not(:last-child) {
    margin-bottom: 10rem;
} */


  
/* @keyframes fadeIn {
    0% {opacity: 0;}
    100% {opacity: 1;}
  }
  
  main {
    animation: fadeIn 10s ease-in-out;
  } */
@keyframes pulse {
    0% {
      transform: scale(1);
    }
    50% {
      transform: scale(1.1);
    }
    100% {
      transform: scale(1);
    }
}

@keyframes slideInFromBottom {
    0% {
      transform: translateY(100%);
      opacity: 0;
    }
    100% {
      transform: translateY(0);
      opacity: 1;
    }
  }
  
@media screen and (min-width: 768px) {
    .hero {
        display: flex;
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap; 
    }

    body header {
        font-size: 30px;
    }


.img{
    width: 30rem;
}

h1 {
    font-size: 5rem;
}
h2{
    font-size: 2rem;
    white-space: initial;
}

.lackoftelegrambutton{
    font-size: 1rem;
}

}