@import url(fontawesome-all.min.css);
@import url("https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,700,900");
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;700;900&display=swap');


/* Full-page background with an orange overlay */
.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;
}

h1 {
    font-size: 2.75em;
    font-weight: 700;
    line-height: 1.3;
    margin: 0 0 1em 0;
    letter-spacing: -0.035em;
    color: white;
    font-family: 'Montserrat', sans-serif;
    text-align: center;
    padding-top: 2%;
}

h2 {
    font-size: 2.25em;
    font-weight: 700;
    line-height: 1.3;
    margin: 0 0 1em 0;
    letter-spacing: -0.035em;
    color: white;
    font-family: 'Montserrat', sans-serif;
    text-align: center;
    padding-top: 2%;
}

p {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 1.25rem;
    font-weight: 400;
    text-align: center;
    color: white;
    padding: 0% 3%;
}

.content{
    margin-top: 3%;
    margin: 7%;
    transform: translateY(30px);
    animation: fadeInUp 1s ease-out forwards;
    opacity: 0; /* Start hidden */
}

@keyframes fadeInUp {
    to {
      opacity: 1;
      transform: translateY(0);
    }
}

.intro{
    background-color: rgba(210, 107, 32, 0.75);
}

.resource{
    background-color: rgba(210, 107, 32, 0.8);
    margin-top: 5%;
}

@media (max-width: 768px) {
    .resource {
        flex-direction: column;
    }

    .resource div {
        margin-bottom: 20px;
    }
}




/* 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;
}

/* 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;
}