body {
    font-family: 'Montserrat', sans-serif;
    margin: 20px;
    text-align: left;
    background-image: url('https://cdn.discordapp.com/attachments/825531463079952405/1177632393742516298/pexels-felix-mittermeier-956999.jpg?ex=657336a2&is=6560c1a2&hm=99b9510bc177916ba41cbfa756a6771ffacbe982347a63d57e6712231eaa17a2');
    /* Replace with the path to your pattern image */
    background-size: cover;
    position: relative;
    color: #ffa500; /* Complement of dark blue (orange) for text color */
}

header {
    text-align: center;
    margin-bottom: 20px;
}

.title {
    color: #FF7F00;
    text-align: center; /* Center-align the title */
}

.date-started {
    color: #FF7F00;
    text-align: center; /* Center-align the date-started */
}

.link-box {
    position: fixed;
    top: 10px;
    left: 10px;
    display: inline-block;
    background-color: #444;
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 20px;
    border: 2px solid #16162e;
    z-index: 2;
}

.link-box a {
    text-decoration: none;
    color: #ffa500; /* Orange text color for the link */
}

.image-container {
    width: 60%;
    margin-left: auto;
    margin-right: auto;
    border: 2px solid #00f; /* Blue border */
    padding: 5px;
    margin-bottom: 20px;
    background-color: rgba(51, 51, 51, 0.85); /* Dark grey background with lower opacity */
    text-align: center; /* Center the text */
    border-radius: 10px; /* Bevels */
    box-shadow: 0 0 20px rgba(0, 0, 255, 0.5);
}

.image-container img {
    width 100%;
    border: 1px solid rgba(30, 144, 255, 0.5); /* Blue border with lower opacity */
    border-radius: 30px; /* Optional: Add border radius for rounded corners */
}

.subtitle {
    font-family: 'Montserrat', sans-serif;
    font-weight: bold; /* Make the text bold */
    font-size: 18px; /* Adjust the font size as needed */
    margin-top: 10px;
    color: #ffa500; /* Orange text color for subtitle */
}

#countdown {
    /* Add styles for the countdown container if needed */
}

#myBtn {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #8aff99;
    color: #494949;
    border: 2px solid #66cc80;
    border-radius: 8px;
    padding: 20px;
    font-size: 16px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease;
    cursor: pointer;
    z-index: 3;
}

#myBtn:hover {
    background-color: #6bdb82;
}

.show-btn {
    display: block;
}

.testimonials-container {
    background-color: #444; /* Darker grey for the testimonials container */
    padding: 20px;
    margin-bottom: 20px;
    border: 4px solid #16162e;
    border-radius: 10px; /* Bevels */
    box-shadow: 0 10px 30px rgba(29, 29, 48, 0.5); /* Orange box shadow */
}

.testimonial {
    margin-bottom: 20px;
}

.testimonial p {
    color: white; /* White text color for testimonials */
}