* {
    --c5: #9a1d21;
    --c4: #c45026;
    --c3: #b26f23;
    --c2: #8BA247;
    --c1: #23b44e;
    --angle: 233deg;
}

html, body {
    height: 100%; /* so that bg pic takes up full height of the screen */
    margin: 0; /* Remove any default margin */
}

body {
    background-image: url("website_bg2.jpg");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: aliceblue;
    font-family: 'Poppins', sans-serif;
    text-align: center;
}

.roof {
    position: fixed;
    width: 100%;
    padding-top: 0.6%;
    height: 4.6%;
    text-align: left;
    background-color: rgba(38, 33, 33, 0.9);
    z-index: 1;
}

.toplink {
    color: white;
    text-decoration: none;
    padding: 0% 2%;
}

.toplink:hover {
    text-decoration: underline;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.top {
    padding-top: 3%;
    opacity: 0;
    animation: fadeIn 0.6s ease-in 0.3s forwards;
}

.title {
    padding-right: 190px;
    font-weight: bold;
    color:aliceblue;
    font-size: 90px;
}


.sub-title {
    padding-left: 190px;
    font-size: 19px;
    font-weight: 400;
}

@keyframes fadeUp {
    0% {
      opacity: 0;
      transform: translateY(15%); /* Start 20px below */
    }
    50% {
      opacity: 0.7;
      transform: translateY(7%); /* Start moving up */
    }
    100% {
      opacity: 1;
      transform: translateY(0%); /* End at the original position */
    }
  }

.datetime-container {
    margin-top: 3%;
    margin-bottom: 1%;
    opacity: 0;
    animation: fadeUp 0.5s ease-in 0.6s forwards;
}

.column {
display: inline-block;
margin: 10px;
font-size: 18px;
}

.column input {
    font-size: 16px;
    padding: 5px;
    width: 70px;
}

.column select {
    font-size: 16px;
    padding: 5px;
    width: 70px;
}
.where-u-click {
font-size: 18px;
padding: 5px 10px;
border: 3px solid #ccc; /* border */
border-radius: 15px; /* Rounded corners */
background-color: transparent; /* background 1f3ca3 blue, f3570f orange */
color: #ffffff; /* text color */
}

option {
    color: black;
    text-align: center;
}

.output_jam {
    width: auto; /* Maintain aspect ratio */
    max-width: 40%;
    padding: 1% 0% 4% 0%;
}


/* Output portion below */

.youchose {
    display: inline-flex;
    padding: 0% 2%;
    font-size: 119%;
}

#road_to {
    opacity: 0;
    animation: fadeIn 0.6s ease-in 0.3s forwards;
}

#date {
    opacity: 0;
    animation: fadeIn 0.6s ease-in 0.3s forwards;
    animation-delay: 0.4s;
}

#time {
    opacity: 0;
    animation: fadeIn 0.6s ease-in 0.3s forwards;
    animation-delay: 0.6s;
}

.yougot {
    display: inline-flex;
    font-size: 135%;
    padding: 0% 2%;
}


.pic {
    opacity: 0;
    animation: fadeIn 0.5s ease-in 0.6s forwards;
    animation-delay: 1.5s;
}

.boldasf {
    font-weight: 650;
}

button {
    padding: 5px 10px;
    border: 3px solid #ccc; /* border */
    border-radius: 15px; /* Rounded corners */
    font-size: 18px;
    color: #ffffff; /* text color */
}

.submit {
    background-color: rgb(0, 255, 94);
    color: rgb(11, 75, 98); /* text color */
    }

.reset {
    padding: 5px 10px;
    background-color: rgb(255, 0, 0);
}

.reset_container {
    display: block;
    margin-top: 1%;
    opacity: 0;
    animation: fadeIn 0.5s ease-in 0.6s forwards;
    animation-delay: 1.5s;
}

.arrowdown {
    font-size: 340%;
}

/* css for the gauge meter below */

.meter_shi {
    display: flex;
    justify-content: center;
    align-items: center; /* Centers text inside vertically*/
}

.progress_bar {
    position: relative;
    background: black;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    mask-image: radial-gradient(transparent 55%, blue 55%);
    background: conic-gradient(var(--c3) 7%, var(--c4) 7% 21%, var(--c5) 21% 35%, rgb(255, 255, 255) 35% 35.5%, transparent 35.5% 64.5%, rgb(255, 255, 255) 64.5% 65%, var(--c1) 65% 79%, var(--c2) 79% 93%, var(--c3) 93%);
}

.pred {
    opacity: 0;
    animation: fadeIn 0.6s ease-in 0.3s forwards;
    animation-delay: 1s;
}

.inner_circle_needle {
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    display: flex;
    justify-content: center; /* Centers text inside horizontally */
    align-items: center; /* Centers text inside vertically*/
    z-index: 2;
    background: conic-gradient(
                from var(--angle) at 50% 50%, /* from 233deg to 476deg */
                skyblue 2deg,
                white 3deg 8deg,
                skyblue 8deg 10deg,
                transparent 10deg);
}

.percentage {
    position: absolute;
    padding-top: 40%;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 200%;
}


#one_to_five {
    display: block;
    padding-bottom: 29%;
}

.two_and_four {
    display: inline-block;
    padding-top: 5%;
}

.one_and_five {
    display: inline-block;
    padding-top: 19%;
}



