html,body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    align-items: center;
    height: 100vh; /* Adjusted to ensure full screen coverage */
    background-image: url("/assets/images/7minutesinhell.jpeg");    
    background-color: rgb(255, 255, 255, .1);
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;

}

  @media (max-width: 768px) {
    html, body {
        background-image: url("/assets/images/7minutesinhellvert.jpg");    
        background-color: rgb(0, 0, 0);
        background-attachment: fixed;
        background-position: top;
        background-repeat: no-repeat;
        background-size:contain;
        height: 100vh;

    }
   
    /* .timer {
        -webkit-text-stroke-width: 3px;
        -webkit-text-stroke-color: rgb(255, 0, 76); 
        -webkit-text-fill-color: rgb(255, 255, 255);   }
    */
} 


.container {
    text-align: center;
}

/* Splash Screen */

#splash-screen {
    position: fixed;
    height: 100%;
    width: 100%;
    margin: 0 auto;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1; /* Initial opacity */
    transition: all 1s ease; /* Transition for opacity change */
    background: rgba(100, 112, 123, 0.19);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(7.7px);
    -webkit-backdrop-filter: blur(7.7px);
     }
  
.splash-content {
    color: white;
    text-align: center;
    width: 75%;
    height: 75%;
    padding: 2em;
    align-items: center;
    align-content: center;
    background-color: rgba(100, 112, 123, .25); 
    border-radius: 10px; 
    box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.25);

  }

  #info {
    align-content: center;
    font-weight: bolder;
    color:azure;

}

#close-splash {
    background-color: #F39090;
    margin-top: 15px;
    font-size: clamp(1rem, 3vw, 2rem);
    border-radius: 5px;;
}

#close-splash:hover {
    background-color: #ff9d9d;

}

#close-splash:active {
    background-color: #ff9d9d;
    
}


/* Sponsor Section */

.sponsor {
    font-size: 1vw;
    top: 0;
    margin-top: 10px;
    display: flex;
    float: none;
    align-items: center;
    justify-content: center;
    align-content: center;
    padding-top: 10px;
    width: 100%;
}



   #sponsorLogo img {
    width: auto;
    max-width: 100px; /* Adjust the max-width as needed */
    height: auto;
    max-height: 150px; /* Adjust the max-height as needed */
}

#logo {
    width: 12%;

}

.sponsor h1 {
    font-size:clamp(.5rem, .75vw, .75rem);
    color: white;
   }


#power-symbol {
    margin: 0;
    width: clamp(1rem, 2vw, 1.5rem);

}


.fade-out {
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.fade-in {
    opacity: 1;
    transition: opacity 0.5s ease-in-out;
}


/* Workout */

#workout {
    margin-top: 10em;
text-align: center;
}

#exercise-description {

    color: #000000;

}

.timer {
    font-size: 12vh; /* Responsive font size based on viewport width */
    font-weight: bolder;
    -webkit-text-stroke-width: 3px;
    -webkit-text-stroke-color: rgb(255, 0, 76); 
    -webkit-text-fill-color: rgb(255, 255, 255);
    padding-top: .75em;
    cursor:pointer;
}

.progress {
    background-color: #ff137999;
    box-shadow: 0px 0px 10px 10px #e8235bb7;
    width: 4vw; /* Responsive width based on viewport width */
    top: 0;
    left: 0;
    border-bottom-right-radius: 5px;
    height: 0;
    position: fixed;
}

@keyframes progressBarAnimation {
    100% {
      height: 100%;
    }
    0% {
      height: 0%;
    }
}

#exercise-name {
    font-size: 8vh; /* Responsive font size based on viewport width */
    font-weight: bold;
    color: rgb(255, 227, 46);
    margin-bottom: 1em;
    cursor:pointer;
}

/* Footer */

.footer {
    font-size: .75em; /* Responsive font size based on viewport width */
    padding-top: 1em;
    bottom: 0;
    width: 100%;
    text-align: left;
    padding-left: 2em;
    padding-bottom: 1em;
    position: fixed;
    color: white;
}
.footer a {

    text-decoration: none;
    margin: 0;
    padding: 0;
    color: #F39090;
}