@font-face {
    font-family: 'Cuprum';
    src: local('Cuprum Regular'), local('Cuprum-Regular'),
        url('Rubik-VariableFont_wght.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
h1 {
	font-family: 'Cuprum';
    color: orangered;
    font-size: 50px;
}
p {
    color: #ffffff;
    font-size: 20px;
}
.navbar-menu a {
    font-family: 'Cuprum';
    color: rgb(255, 81, 0);  
    font-size: 30px;
}
.navbar {
    width: 100%;
    height: 70px;
    box-shadow: 0 4px 10px conic-gradient(from var(--angle), transparent 50%, #ffa500, #ff0000);
    background-color: #0e0e0e;
    position: relative;
    align-content: center;
    border-radius: 20px;
}
.navbar::after, .navbar::before {
    content: '';
    position: absolute;
    height: 100%;
    width: 100%;
    background-image: conic-gradient(from var(--angle), transparent 50%, #ffa500, #ff0000);
    border-radius: 20px;
    z-index: -1;
    padding: 5px;
    top: 50%;
    left: 50%;
    translate: -50% -50%;
    animation: 5s spin linear infinite;
    display: flex;
}
.navbar::before {

    filter: blur(1.5rem);
    opacity: 0.5;
}

.navbar .container {
    height: inherit;
    display: flex;
    justify-content: space-between;
    align-items: center;

}
.navbar-menu {
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 0;
    margin-right: 720px;
    margin-bottom: 25px;
}
.navbar-menu li {
    display: inline-block;
    transition: all 0.90s ease-in-out;

}
.navbar-menu li a {
    display: inline-block;
    padding: 10px;
    text-decoration: none;
    
}
.navbar-menu li a:hover {
    display: inline-block;
    padding: 10px;
    text-decoration: none;
    color: rgb(255, 0, 0);
    font-size: 36px;
    
}
.navbar-wrap {
    display: flex;
    flex-flow: row nowrap;
}
.navbar-brand {
    font-family: 'Cuprum';
    font-weight: 800;
    text-decoration: none;
    color: #ffffff;
    font-size: 30px;
    margin-bottom: 10px;
    margin-left: 50px;
}
#square {
    border-radius: 20px;
    width: 300px;
    height: 200px;
    background: #111111;
    position: relative;
    align-content: center;
    top: 30px;
    left: 10px;


}
#square1 {
    border-radius: 20px;
    width: 1000px;
    height: 750px;
    background: #111111;
    position: relative;
    align-content: center;
    top: 100px;
    left: 400px;

}

#square2 {
    border-radius: 20px;
    width: 1200px;
    height: 1200px;
    background: #1a1a1a;
    position: relative;
    align-content: center;
    top: 100px;
    left: 400px;
    word-break: break-all;
     word-wrap: break-word;

}
#square3 {
    border-radius: 20px;
    width: 1200px;
    height: 700px;
    background: #1a1a1a;
    position: relative;
    align-content: center;
    top: 100px;
    left: 400px;
    word-break: break-all;
     word-wrap: break-word;

}

@property --angle{
    syntax: "<angle>";
    initial-value: 0deg;
    inherits: false;
}

#square::after, #square::before {
    content: '';
    position: absolute;
    height: 100%;
    width: 100%;
    background-image: conic-gradient(from var(--angle), transparent 50%, #ffa500, #ff0000);
    border-radius: 20px;
    z-index: -1;
    padding: 5px;
    top: 50%;
    left: 50%;
    translate: -50% -50%;
    animation: 2s spin linear infinite;
    display: flex;
}
#square::before {

    filter: blur(1.5rem);
    opacity: 0.5;
}
@keyframes spin{
    from{
    --angle: 0deg;
    }
    to{
      --angle: 360deg;
    }
}

#square1::after, #square1::before {
    content: '';
    position: absolute;
    height: 100%;
    width: 100%;
    background-image: conic-gradient(from var(--angle), transparent 75%, #1100ff);
    border-radius: 20px;
    z-index: -1;
    padding: 5px;
    top: 50%;
    left: 50%;
    translate: -50% -50%;
    animation: 1s spin linear infinite;
}
#square1::before {

    filter: blur(2.5rem);
    opacity: 0.5;
}

body {
    background-color: #131313;
}
.squaretega {
    text-align: center;
}
.cont1 {
    display: flex;
    justify-content: space-around;
}
.button {
    background-color: black;
    border-radius: 25px;
    color: #ffffff;
    font-family: 'Cuprum';
    width: 200px;
    height: 50px;
    position: relative;

}
a {
	font-family: 'Cuprum';
    color: orangered;
    font-size: 50px;
    text-decoration: none;
}

#tovar2 {
    font-family: 'Cuprum';
    color: white;
    font-size: 35px;
}


#fsd {
    word-break: break-all; /* Так длинные слова будут переноситься */
  }