body {
  background-color: black;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  font-family: "Roboto", Arial, sans-serif;
}

.container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: 100%;
  padding-top: 50px; /* Adjust the spacing as needed */
  max-width: 1920px; /* Maximum width for full HD */
  margin: 0 auto; /* Center the container horizontally */
}

.content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.red-dot {
  width: 280px;
  height: 280px;
  background-color: red;
  border-radius: 50%;
  margin-bottom: 20px;
}

.text {
  color: white;
  font-size: 20px;
  margin-bottom: 20px;
}

.button {
  padding: 10px 20px;
  background-color: #7F6C6C;
  color: white;
  text-decoration: none;
  font-size: 16px;
  border-radius: 5px;
  text-align: center;
  margin-bottom: 10px;
}

.button:last-child {
  margin-top: auto;
  margin-bottom: 50px; /* Adjust the spacing as needed */
}

/* Media Queries */

/* Responsive styles for devices with a maximum width of 768px */
@media only screen and (max-width: 768px) {
  .red-dot {
    width: 200px;
    height: 200px;
  }
  
  .text {
    font-size: 16px;
  }
  
  .button {
    font-size: 14px;
  }
}

/* Responsive styles for devices with a maximum width of 480px */
@media only screen and (max-width: 480px) {
  .red-dot {
    width: 160px;
    height: 160px;
  }
  
  .text {
    font-size: 14px;
  }
  
  .button {
    font-size: 12px;
  }
}
