body {
    margin: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: black;
    color: white;
    font-family: Arial, sans-serif;
    text-align: center;
    position: relative;
}

.big-text {
    font-size: 10vw;
    font-weight: bold;
}

.small-text {
    font-size: 3vw;
    margin-top: 1vh;
}

#addTextButton {
    position: fixed;
    top: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
    font-size: 24px;
    font-weight: bold;
    border-radius: 50%;
    border: none;
    background-color: #161616;
    color: white;
    cursor: pointer;
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.2s;
}

#addTextButton:hover {
    transform: scale(1.2);
}

.site-footer {
  width: 100%;
  background-color: #070707a1;
  color: #fff;
  text-align: center;
  padding: 15px 0;
  position: fixed;
  bottom: 0;
  left: 0;
  font-family: Arial, sans-serif;
  box-shadow: 0 -2px 5px rgba(0,0,0,0.3);
  z-index: 999;
}

.site-footer a {
  color: #f31212;
  text-decoration: none;
  font-weight: bold;
}

.site-footer a:hover {
  text-decoration: underline;
}

.footer-content p {
  margin: 5px 0;
  font-size: clamp(12px, 2vw, 18px);
}
