body {
    margin: 0;
    padding: 0;
    background-color: #000000; /* Black background */
    color: #fff; /* White text */
}

.container {
    max-width: 480px; /* Max width */
    width: 100%; /* Occupy full width */
    margin: auto; /* Center horizontally */
    border: 5px solid #ffffff; /* White border */
    padding: 20px;
    box-sizing: border-box; /* Ensure padding and border are included in the width */
}

h1 {
    text-align: center;
}

.audio-container,
.video-container,
.calendar-container {
    margin-top: 20px;
    text-align: center;
}

.message-link {
    display: block;
    text-align: center;
    font-size: 1rem; /* Smaller font size for the links */
    margin-top: 10px; /* Small gap between items */
}

/* Container for Contact Options */
.contact-options {
    display: flex;
    flex-direction: column; /* Stack items vertically */
    align-items: center; /* Center items horizontally */
    gap: 10px; /* Small gap between items */
    margin-top: 2vh;
}

/* Message Link Styling */
.message-link, .download-button {
    font-size: 1rem; /* Smaller font size */
    text-align: center;
    text-decoration: none; /* Remove underline */
}

/* Download App Button Styling */
.download-button {
  background-color: #1e90ff;
  color: #ffffff;
  padding: 8px 16px;
  border-radius: 5px;
  font-size: 1rem;
  text-decoration: none;
}

.download-button:hover {
  background-color: #4682b4;
}

/* Disclaimer Text Styling */
.disclaimer-text {
    font-size: 0.5rem; /* Very small text */
    color: #d3d3d3; /* Light grey color */
    text-align: center; /* Center the text */
    margin-top: 5px; /* Small gap from the button */
}

/* Responsive styles */
@media only screen and (max-width: 480px) {
    .container {
        padding: 10px; /* Adjust padding for smaller screens */
    }

    .message-link, .download-button {
        font-size: 0.9rem; /* Slightly smaller font size on small screens */
    }
}
