/* index.html   stili */

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #ffeedd;
    color: #333;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 800px;
    margin: 40px auto;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
   position: relative;
            overflow: hidden; /* Ограничивает содержимое контейнера */
}

   .corner-image {
            width: 80px; /* Установите нужный размер картинки */
            height: auto;
        }


.corner-image-left {
    position: absolute;
    top: 0;
    left: 0;
    max-height: 100px;
}

.corner-image-right {
    position: absolute;
    top: 0;
    right: 0;
    max-height: 100px;
}

.main-title {
    font-size: 48px;
    text-align: center;
    margin-bottom: 20px;
}

.team-name {
    font-size: 24px;
    text-align: center;
    margin-bottom: 10px;
}

.team-photo {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 0 auto 20px;
}

h3 {
    text-align: center;
    margin-bottom: 10px;
}



ul {
    list-style-type: none;
    padding: 0;
    display: flex;
    justify-content: center;
}

li {
    margin: 0 10px;
}

a {
    text-decoration: none;
    color: #2196f3;
    font-size: 18px;
    padding: 5px 10px;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s, color 0.3s;
}

a:hover {
    background-color: #2196f3;
    color: #fff;
}



#countdown {
    text-align: center;
    font-size: 24px;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

#countdown span {
    margin: 0 5px;
    padding: 5px;
    background-color: #90caf9;
    color: #fff;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

#countdown span:not(:last-child):after {
    content: ":";
    margin-left: 5px;
    color: #333;
    font-weight: bold;
}

.countdown-text {
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    color: #ff5722;
    margin-bottom: 10px;
}
.countdown-text, .countdown-timer {
    display: block;
    width: 100%;
}


.statistics-link {
    text-align: center;
    margin-bottom: 20px;
}




.modal {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.4);
}

.modal-content {
  position: relative;
  background-color: #fefefe;
  margin: 15% auto;
  padding: 20px;
  border: 1px solid #888;
  width: 80%;
  text-align: center;
}

.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}


@media screen and (max-width: 768px) {
    .corner-image-left,
    .corner-image-right {
        max-height: 50px;
    }
}



