html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: Arial, sans-serif;
    background-color: #FFF;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    top: -10%; /* Подвинуть контейнер вверх */
    transform-origin: top; /* Точка начала трансформации сверху */
    height: 100%;
    width: 100%;
    padding: 10px;
    box-sizing: border-box;
    transform: scale(0.8); /* Уменьшить на 20% */
}

.full-screen-table {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    width: 100%;
    flex-grow: 1;
    border-collapse: collapse;
    margin-top: 0; /* Убираем большой отступ сверху */
}

.full-screen-table .section {
    border: 1px solid #000;
    text-align: center;
    vertical-align: middle;
    padding: 10px;
}

h1 {
    margin: 0;
    font-size: 32px;
}

p {
    margin: 10px 0;
    font-size: 20px;
}

.download-button {
    display: inline-block;
    padding: 10px 20px;
    font-size: 32px;
    text-decoration: none;
    border-radius: 5px;
    cursor: pointer;
}

.download-button:visited {
    color: #0000ee;
}

.downloade-button {
    display: inline-block;
    padding: 10px 00px;
    font-size: 32px;
    text-decoration: none;
    border-radius: 0px;
    cursor: pointer;
}

.downloade-button:visited {
    color: #0000ee;
}


.footer-text {
    font-size: 13px;
    text-align: center;
    margin-top: 10px;
}

.section {
    position: relative;
}

.section-info {
    position: absolute;
    top: 10px;
    right: 10px;
    text-align: right;
    font-size: 14px;
    color: #555;
}

.rainbow-text-loop {
  font-size: 1.5rem;
  display: inline-block;
  margin-top: 1rem;
  text-shadow: 2px 2px 4px #000000;
  -webkit-animation: rainbow 5s infinite; 
}
@-webkit-keyframes rainbow{
  0%{color: orange;}  
  10%{color: purple;} 
  20%{color: red;}
  30%{color: CadetBlue;}
  40%{color: yellow;}
  50%{color: coral;}
  60%{color: green;}
  70%{color: cyan;}
  80%{color: DeepPink;}
  90%{color: DodgerBlue;}
  100%{color: orange;}
}
