*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
a{
    text-decoration: none;
}
@font-face {
    font-family: 'MyFont';
    src: url('./font/ReSquare-Bold.ttf') format('truetype');
}
.olen {
    position: absolute;
    top: 50%;
    left: 48%;
    transform: translate(-50%, -50%);
    height: 100%;
    
}
body, html{
    height: 100vh;
    background-color: black;
    position: relative;
    overflow-x: hidden;
}
span {
    color: #460072;


    font-family: 'MyFont';
    font-size: 5vh;
    font-weight: 700;
    line-height: 60.24px;
    text-align: center;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;

}

.strech{
    position: absolute;
    top: 20%;
    left: 0;
    width: 180%;
    padding-left: -40%;
    height: 7vh;
    background: #38005a48;
    transform: rotate(2deg);
    overflow: hidden;
}
.strech4{
    position: absolute;
    top: 45%;
    left: 0;
    width: 100%;
    height:7vh;
    background: #1d0030;
    transform: rotate(-1deg);
    overflow: hidden;
}
.strech4 span{
    color: #4e007e;
}

.text-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 190%;
    margin-right: -30%;
    transform: translate(-50%, -50%);
    color: white;
    overflow: hidden;
    white-space: nowrap;
    padding: 10px 20px;
    font-size: 20px;
    text-align: center;
    border-radius: 5px;

}

.banner {
    width: 140%;
    margin-left: -40%;
    height: 50px;
    /* Висота банера */
    overflow: hidden;
    white-space: nowrap;
    position: fixed;
    top: 0;
    left: 0;
    background-color: #333;
    /* Колір фону */
    color: white;
    display: flex;
}

.banner-content {
    display: inline-block;
    padding: 0 5px;
    line-height: 50px;
    width: max-content;
    /* Ширина елементів на основі контенту */
    animation: scroll 10s  linear infinite;
}



@keyframes scroll {
    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(-100%);
    }
}

.text-overlay1 {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 400%;
    margin-left: -50%;
    transform: translate(-50%, -50%) ;
    color: white;
    overflow: hidden;
    white-space: nowrap;
    padding: 10px 20px;
    font-size: 20px;
    text-align: center;
    border-radius: 5px;

}

.banner1 {
    width: 150%;
    margin-left: -50%;
    height: 50px;
    /* Висота банера */
    overflow: hidden;
    white-space: nowrap;
    position: fixed;
    top: 0;
    left: 0;
    background-color: #333;
    /* Колір фону */
    color: white;
    display: flex;
}

.banner-content1 {
    display: inline-block;
    padding: 0 5px;
    line-height: 50px;
    width: max-content;
    /* Ширина елементів на основі контенту */
    animation: scroll1 10s linear infinite;
}

.banner-content img {
    margin-left: 5px;
}

.banner-content1 img {
    margin-left: 5px;
}

@keyframes scroll1 {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

.centered-block {
    position: absolute;
    left: 50%;
    bottom: 4%;
    transform: translateX(-50%);
    width: 45%;

    border-radius: 10px;
    display: flex;
    flex-direction: column;
    gap: 15px;

}

.centered-block h1 {
    margin: 0;
    font-family: 'MyFont';
    font-size: 5vh;
    font-weight: 700;
    color: #7BEE0B;

    text-align: center;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;

}

.centered-block p {
    color: white;
    font-family: 'MyFont';
    font-size: 4vh;
    font-weight: 500;
    line-height: 40.03px;
    text-align: center;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;

}

.centered-block .up {
    margin: 0 auto 10px;
    animation: 4s up infinite;
}

@keyframes up {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(15px);
    }
}
.centered-block a {
    width: 45%;
}
.centered-block button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

button img {
    margin: 0;
}

.centered-block .contact {
    border: none;
    cursor: pointer;


    padding: 20.33px 30.36px 20.33px 30.36px;
    gap: 13.56px;
    border-radius: 21.69px;
    opacity: 0px;
    background: #7BEE0B;
    box-shadow: 0px 0px 11.25px 0px #7BEE0B66;

    box-shadow: 0px 0px 1.36px 0px #FFFFFF inset;
    font-family: 'MyFont';
    font-size: 3vh;
    font-weight: 700;
    line-height: 20.41px;
    text-align: center;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;

    transition: 1s;
}

.centered-block .bot {
    border: none;
    cursor: pointer;


    padding: 20.33px 30.36px 20.33px 30.36px;
    gap: 13.56px;
    border-radius: 21.69px;
    opacity: 0px;
    background: #FFFFFF;
    box-shadow: 0px 0px 11.25px 0px #7BEE0B66;

    box-shadow: 0px 0px 1.36px 0px #FFFFFF inset;
    font-family: 'MyFont';
    font-size: 3vh;
    font-weight: 700;
    line-height: 25.41px;
    text-align: center;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;

    transition: 1s;
}

.centered-block button:hover {
    transform: scale(1.2);
}

.button_rapper {
    display: flex;
    width: 100%;
    justify-content: space-between;
}
@media (max-width:1266px) and (min-width:1025px) {
    button{
        height: 92px;
     }
}
@media (max-width:1024px) {
 body{
    height: 100vh;
 }
 .centered-block{
    width: 90%;
 }

}
@media (max-width:800px) {
 
    .centered-block{
       width: 90%;
    }
    button{
        height: 92px;
     }
   }
   @media (max-width:500px) {
    .centered-block h1 {
        margin-bottom: 24px;
     
    
    }
    
    body{
        height: 140vh;
     }
    .strech{
        position: absolute;
        top: 10%;
        left: 0;
        width: 100%;
        height: 7vh;
        background: #38005a48;
        transform: rotate(2deg);
        overflow: hidden;
    }
    .strech4{
        position: absolute;
        top: 35%;
        left: 0;
        width: 100%;
        height:7vh;
        background: #1d0030;
        transform: rotate(-1deg);
        overflow: hidden;
    }
    .olen{
        top: 40%;
        height: 70%;
    }
    body{
       height: 140vh;
    }
    .centered-block{
       width: 100%;
    }
    
.button_rapper {
    display: flex;
    flex-direction: column;
    width: 100%;
    justify-content: center;
}
.button_rapper a{
    width: 50%;
   margin: 0 auto 0;
}
.button_rapper a:first-child{
    width: 50%;
   margin: 0 auto 40px;
}
   }

