body {
    font-family: 'Times new Roman', sans-serif;
    text-align: center;
    background-color: #ffffff;
    transition: background-color 0.5s;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    position: relative;
}
.background {
  position: absolute; /* make it absolute to position it behind the container */
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh; 
  background-size: cover;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  z-index: -1;
  animation: change 100s infinite ease-in-out; /* set the z-index to -1 to position it behind the container */
}
@keyframes change {
    0%{
     background-image: url('sight/1.jpg');
    }
    8%{
     background-image: url('sight/2.jpg');
    }
    16%{
        background-image: url('sight/3.jpg');
       }
    24%{
        background-image: url('sight/4.jpg');
       }
    32%{
        background-image: url('sight/5.jpg');
       }
    40%{
        background-image: url('sight/6.jpg');
       }
    48%{
        background-image: url('sight/7.jpg');
       }
    56%{
        background-image: url('sight/8.jpg');
       }
    64%{
        background-image: url('sight/9.jpg');
       }
    72%{
        background-image: url('sight/10.jpg');
       }
     100%{
       background-image: url('sight/11.jpg');
    }
                                 
}
.container {
  position: relative; /* make it relative to position it on top of the background */
  z-index: 1; /* set the z-index to 1 to position it on top of the background */
  padding: 20px; /* add some padding to the container */
  background-color: #fff; /* add a background color to the container (optional) */
  box-shadow: 0 0 0 100vh rgba(0, 0, 0, 0.5);
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: opacity 0.5s, transform 0.5s;
    background-color: hsla(0, 2%, 42%, 0.76); /* added transparency */
    backdrop-filter: blur(4px); 
    border-radius: 10px;
}

h1 {
    color: hsl(20, 100%, 99%);
    margin-bottom: 20px;
    font-size: 2.5em;
}

.description {
    color: #ffffff;
    margin-bottom: 40px;
    font-size: 1.2em;
    max-width: 600px;
}

button {
    padding: 15px 30px;
    margin: 10px;
    background-color: #e94f07;
    border: none;
    border-radius: 5px;
    color: #ffffff;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s, transform 0.3s, box-shadow 0.3s;
}

button:hover {
    background-color: #333333;
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.hidden {
    opacity: 0;
    transform: scale(0.9);
    pointer-events: none;
}

#buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
}

#semester-buttons, #program-btn, #calculate-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.container {
    max-width: 700px; 
    margin: -125px ; 
    text-align: center;
}
  
.discipline-btn {
    margin: 5px; 
}
  
#buttons {
    display: flex;
    justify-content: center; 
}
  
.description {
    margin-bottom: 20px; 
}
/* Add this at the end of your CSS file */

/* Media query for phone screens (max-width: 768px) */
@media only screen and (max-width: 768px) {
    .container {
      max-width: 90%; /* adjust the max-width to fit the phone screen */
      margin: 20px auto; /* adjust the margin to center the container */
      padding: 10px; /* reduce the padding to fit the phone screen */
    }
    
    .description {
      font-size: 1em; /* reduce the font size to fit the phone screen */
    }
    
    button {
      padding: 10px 20px; /* reduce the padding to fit the phone screen */
    }
    .discipline-btn {
      margin: 5px 0; /* adjust the margin to fit the phone screen */
    }
  }
  footer {
    position: absolute;
    bottom: 0;
    width: 98%;
    height: 75px; /* adjust the height as needed */
    padding: 10px;
    background-color: hsla(0, 2%, 42%, 0.3); /* added transparency */
    backdrop-filter: blur(4px); 
    transform: translateY(-8px);
}

footer a {
    color: #ff9100;
    text-decoration: none;
}

footer a:hover {
    color: #ff3300;
}
footer p {
    color: #fff;
}
.logo {
    position: absolute;
    top: 10px;
    right: 10px;
    height: auto;     
    }
@media (max-width :480px){
    .logo{
        width: 150px;
    }
}
@media (min-width :480px){
    .logo{
        width: 250px;
    }
}