body {

  background-repeat: repeat;
  color: black;
  font-family: "Ubuntu";
  text-shadow: 
    -1px 0px 0px white,
    1px 0px 0px white,
    0px 1px 0px white,
    0px -1px 0px white,
    
    1px 1px 0px white,
    -1px 1px 0px white,
    1px -1px 0px white,
    -1px -1px 0px white;
  margin: 0px;
  padding:0;
  display: flex;
  justify-content: center;
  animation: scrolling 10s linear infinite;
}

@media screen and (min-width: 769px) {
.content {
  max-width:1300px;
  width: 67%;
  

  margin: 0 auto;
}}

* {
  box-sizing:border-box;
}

@media screen and (min-width: 850px) {
main {
  padding:20px;
  height:600px;
  overflow:auto;
  background-color: rgba(0, 0, 0, 0.1);
  height:auto;
}
}

@keyframes scrolling {
  0%{background-position: 0 0;}
  100%{background-position: 320px 320px;}
}



.navbar li{
  float: left;
}

button{
  cursor: pointer;
}

.a {
  color: #834dc4;
  transition: all 0.4s cubic-bezier(0,1.85,1,1);
}


.a:hover{
  /*text-shadow: 0px 0px 0px white;*/
  font-size: 110%;
  transform: rotate(-5deg);
  animation: colorchange 2s infinite;
  /*box-shadow: 0px 0px 100px 5px white;*/
}


.navbar ul{
  list-style-type: none;
  color: #000;
  background-color: rgba(255, 255, 255, 0.3);
  overflow: hidden;
  margin: 0px;
}

.navbar a{
  transition: all 0.4s;
  color: #000;
  font-size: 20px;
  padding: 10px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
}

.navbar a:hover{
  background-color: rgba(255, 255, 255, 0.3);
  /*transform: rotate(5deg);*/
}

.img-link img:hover{
  /*background-color: rgba(255, 255, 255, 0.4);*/
  transform: rotate(5deg);
}

.Bcanvas { 
  border: 5px solid black; 
}

canvas { 
  border: 5px solid white; 
  border-radius: 10px;
}

.blogElement {
  background-color: rgba(255, 255, 255, 0.2);
}

@keyframes colorchange {
     0%  {color: rgba(255, 0, 0, 0.2);}
    33%  {color: rgba(0, 255, 0, 0.2);}
    66%  {color: rgba(0, 0, 255, 0.2);}
    100%  {color: rgba(255, 0, 0, 0.2);}
}  

.blogElement ul {
  padding: 0.5rem;
  display: flex;
  flex-direction: column;
}


.blogElement ul{
  list-style-type: none;
  color: #000;
  overflow: hidden;
  margin: 0px;
  
}

button:hover{
  animation: colorchange 2s infinite;
  box-shadow: 0px 0px 100px 5px white;
}

.sdelatSuharikButton {
  width: 0px;
  height: 0px;
  background: rgba(0, 0, 0, 0);
  transform: translate(-800%, 0%);
  /*
  font-size: 25px;
  animation: colorchange 2s infinite;
  
  -webkit-touch-callout: none; 
  -webkit-user-select: none; 
  -khtml-user-select: none;  
  -moz-user-select: none;      
  -ms-user-select: none;      
  user-select: none;   
  */
}

.suharikButtons {
  padding-left: 50px;
  width: 20em;
  text-align : center;
}


.panel {
  position: relative; /* Устанавливаем позиционирование на элементе-контейнере */
}

.panel::before {
  content: ''; /* Добавляем пустое содержимое для псевдоэлемента */
  position: absolute; /* Устанавливаем позиционирование абсолютное */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: -1;
}
.panel {
  padding: 6px;
  color: #000;
}


.blink {
    animation: blinker 1.5s linear infinite;
    color: red;
    font-family: sans-serif;
}
@keyframes blinker {
    50% {
        opacity: 0;
    }
}
            

.container2 {
  position: relative;
  width: 100%;
  max-width: 1152px;
  left: -10%;

}

.container {
  position: relative;
  width: 100%;
  max-width: 1152px;
  left: 10%;
}

.game_button {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  transition: .2s linear;
}

.container:hover .game_button {
  opacity: 1;
}
.container2:hover .game_button {
  opacity: 1;
}



.calendar {
            width: 200px;
            height: 330px;
            background-color: rgba(255, 255, 255, 0.3);
            border: 5px solid white;
            position: absolute;
            bottom: 20px;
            right: 20px;
            /* Используйте нужные значения отступов для подходящего положения */
            display: flex;
            justify-content: center;
            align-items: center;
        }
        
/* Медиа-запрос для мобильных устройств с максимальной шириной 767px */
        @media (max-width: 767px) {
            .calendar {
                display: none; /* Скрываем блок на мобильных устройствах */
            }
        }
            