@import url(fontawesome-all.min.css);
@import url("https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,700,900");

/* Full-page background with an orange overlay */

@keyframes fadeInUp {
    to {
      opacity: 1;
      transform: translateY(0);
    }
}

.background-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: url('image.jpg') center/cover no-repeat;
    z-index: -2;
}

/* Orange overlay effect */
.background-container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(210, 107, 32, 0.9); /* Orange color overlay */
    z-index: -1;
}

/* Centering the Google Calendar */
.calendar-container {
    display: flex;
    justify-content: center; /* Centers horizontally */
    align-items: center; /* Centers vertically */
    height: 85vh; /* Reduce height slightly to fit the button */
    padding: 2rem; /* Adds some spacing around the calendar */
    transform: translateY(30px);
    animation: fadeInUp 1s ease-out forwards;
    opacity: 0; /* Start hidden */
}

/* Responsive Google Calendar */
.calendar {
    width: 95%; /* Adjusts to screen size */
    height: 90vh; /* Makes sure it is responsive */
    max-width: 1400px; /* Prevents it from becoming too large */
    border: none;
}

/* Center the button below the calendar */
.button-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px; /* Space between the calendar and the button */
    height: 10vh; /* Give it a dedicated space */
    text-decoration: none;
    transform: translateY(30px);
    animation: fadeInUp 1s ease-out forwards;
    opacity: 0; /* Start hidden */
}

/* Styling for the back button */
.bottomButton {
    display: block; 
    width: 350px;
    height: 100px;
    font-size: 30px;
    font-weight: bold;
    border-radius: 20px;
    font-family: "Source Sans Pro", Helvetica, sans-serif;
    transition: all 0.3s ease;
    background-color: rgba(210, 107, 32, 0.75);
    border: 2px solid white;
    color: white;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
}

.bottomButton:hover {
    transform: scale(1.1);
    color: white;
}

.bottomButton:active {
    transform: scale(1.1);
    background-color: white;
}