@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;700&display=swap');

body {
    font-family: 'Inter', sans-serif;
    text-align: center;
    background-color: black;
    color:  #e82127 ;
    /*color: #f8ec4c;*/
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

h1 {
    display: none;
}

.percentageValue {
    font-size: 48px;
    margin-top: 50px;
}

.progress-bar {
    width: 400px;
    height: 20px;
    background-color: #333;
    margin-top: 30px;
    overflow: hidden;
}

#progress {
    height: 100%;
    background-color: #e82127;
    /*background-color: #f8ec4c;*/
    width: 0;
    transition: width 0.1s ease-in-out;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: transparent;
    color: #fff;
    padding: 10px;
    z-index: 999;
    display: flex;
    justify-content: space between;
    align-items: center;
}

.navbar ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.navbar ul li {
    margin-right: 10px;
}

.navbar ul li a {
    color: #fff;
    text-decoration: none;
}

.navbar ul li a:hover {
    text-decoration: none;
}

.hamburger {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    margin-right: 10px;
}

.hamburger span {
    display: block;
    width: 30px;
    height: 3px;
    background-color: #fff;
    margin-bottom: 5px;
    transition: all 0.3s ease-in-out;
}

.hamburger:hover span {
    background-color: #e82127;
    /*background-color: #f8ec4c;*/
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 200px;
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
    padding: 10px;
    display: none;
    transform: translateY(-20px);
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
}

.menu.show {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.menu-item {
    opacity: 0;
    transform: translateY(-20px);
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
}

.menu-item.show {
    opacity: 1;
    transform: translateY(0);
}

.menu-item a {
    text-decoration: none;
    color: #fff;
    transition: color 0.3s ease-in-out;
}

.menu-item a:hover {
    color: #e82127;
    /*color: #f8ec4c;*/
}

.inputWindow {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(0,0,0,1);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    transition: opacity 0.3s ease-in-out;
}

.inputContainer {
    background-color: transparent;
    border-radius: 1rem;
    height: fit-content;
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.inputContainer.show {
    opacity: 1;
}
/*Count Arrows off*/
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
/*Count Arrows off*/
input[type=number] {
  -moz-appearance: textfield;
}

input {
    width: fit-content;
    margin-bottom: 10px;
    padding: 10px;
    border: none;
    background-color: transparent;
    border-radius: 1rem;
    color: white;
    text-align: center;
    font-size: 48px;
    font-family: 'Inter', sans-serif;
    transition: 0.5s;
}
input:hover{
    color: #e82127;
    /*color: #f8ec4c;*/
}
input:focus{
    color: #e82127;
    outline: none;
}
button {
    background-color: transparent;
    color: white;
    border: none;
    padding: 10px;
    border-radius: 1rem;
    cursor: pointer;
    font-size: 48px;
    font-family: 'Inter', sans-serif;
}
button:hover{
    color: #e82127;
    /*color: #f8ec4c;*/
}