/*Обнуление*/
*{
	padding: 0;
	margin: 0;
	border: 0;
}
*,*:before,*:after{
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
:focus,:active{outline: none;}
a:focus,a:active{outline: none;}

nav,footer,header,aside{display: block;}

html,body{
	height: 100%;
	width: 100%;
	font-size: 100%;
	line-height: 1;
	font-size: 14px;
	-ms-text-size-adjust: 100%;
	-moz-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
}
input,button,textarea{font-family:inherit;}

input::-ms-clear{display: none;}
button{cursor: pointer;}
button::-moz-focus-inner {padding:0;border:0;}
a, a:visited{text-decoration: none;}
a:hover{text-decoration: none;}
ul li{list-style: none;}
img{vertical-align: top;}

h1,h2,h3,h4,h5,h6{font-size:inherit;font-weight: 400;}
/*--------------------*/

@keyframes pulse {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    transform: translate(-50%, -50%) scale(1.08);
  }
}

@keyframes float {
  0%, 100% {
    transform: translate(-50%, -50%) translate(0, 0);
  }
  25% {
    transform: translate(-50%, -50%) translate(20px, -6px);
  }
  50% {
    transform: translate(-50%, -50%) translate(-10px, 15px);
  }
  75% {
    transform: translate(-50%, -50%) translate(-10px, -6px);
  }
}

body{
    font-family: "Inter", serif;
    font-optical-sizing: auto;
    color: white;
    background-color: #1B1C1C;
} 

main{
    display: flex;
    height: 100%;
    align-items: center;     /*Центрирование по вертикали */
    overflow: hidden;
    justify-content: center;
    flex-direction: column;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.h1{
    font-family: "Manrope", sans-serif;
    font-size: 60px;
    font-weight: 700;
    text-align: center;
    background-color: rgba(37, 38, 39, 0.6);
    backdrop-filter: blur(200px); /* Размытие того, что под блоком */
    -webkit-backdrop-filter: blur(200px); /* Поддержка Safari */
    padding: 20px 40px 20px 40px;
    margin-bottom: 10px;
    border-radius: 15px;
}

.h3{
    font-family: "Inter", serif;
    text-align: center;
    background-color: rgba(37, 38, 39, 0.6);
    backdrop-filter: blur(200px); /* Размытие того, что под блоком */
    -webkit-backdrop-filter: blur(200px); /* Поддержка Safari */
    width: 50%;
    padding: 10px;
    border-radius: 15px;
}

.blur-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

.circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.35;
    mix-blend-mode: screen;
    transform: translate(-50%, -50%);
    animation: pulse 6s ease-in-out infinite, float 8s ease-in-out infinite;
}

    /* Примеры кругов */
.circle.one {
    width: 450px;
    height: 500px;
    background: #9A58F1;
    top: 50%;
    left: 40%;
    animation-delay: 4s;
}

.circle.two {
    width: 450px;
    height: 500px;
    background: #6C88DB;
    top: 50%;
    left: 60%;
    animation-delay: 2s;
}

.download-btn {
    font-family: "Inter", serif;
    background-color: rgba(37, 38, 39, 0.6);
    backdrop-filter: blur(200px); /* Размытие того, что под блоком */
    -webkit-backdrop-filter: blur(200px); /* Поддержка Safari */
    padding: 10px;
    border-radius: 15px;
    font-size: 16px;
    padding: 10px 20px;
    border-radius: 15px;
    margin-top: 20px;
    color:white;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background-color 0.2s ease
}

.download-btn:hover{
    background-color: rgba(23, 23, 24, 0.6);
}

.download-btn .icon {
    width: 25px;
    height: 25px;
    fill: white;
}
