
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');




*{
    margin: 0;
    padding: 0;
    font-family: poppins, sans-serif;
}

/* loader */

.loader{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #00B4D8;
    transition: opacity 0.75s, visibility 0.75s;
}


.loader-hidden{
    opacity: 0;
    visibility: hidden;
}

.loader::after{
    content: "";
    width: 75px;
    height: 75px;
    border: 15px solid #dddddd;
    border-top-color: #7449f5;
    border-radius: 50%;
    animation: loading 0.75s ease infinite;
}
@keyframes loading{
    from{
        transform: rotate(0turn);
    }
    to{
        transform: rotate(1turn);
    }
}
.navbar{
    text-align: center;
    font-size: 1.4rem;
    padding: 0.6rem;
    background-color: #CAF0F8;
    box-shadow: 2px 2px 50px black inset;
    
}
main{
    background-color: #00B4D8
}
.main{
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}
.ticker{
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 1rem;
    width: 95%;
}

.title{
    text-align: center;
    background: #00B4D8;
    position: relative;
    font-size: 2rem;
    padding-left: 1rem;
}
.display p{
    padding-top: 0.5rem;
    font-size: 1.3rem;
}

.container{
    box-shadow:1px 1px 20px 5px inset;
    background-color: #90E0EF;
    padding: 2rem;
    border-radius: 1rem;
    min-height: 45vh;
    width: 40vh;
}
.container h2{
    text-align: center;
    font-size: 2rem;
}

form{
    margin: 2rem 0 1rem 0;
}

form select, button, input{
    width: 100%;
    border: none;
    outline: none;
    border-radius: 0.75rem;
    background-color: #90E0EF;

}

form input{
    border: 1px solid black;
    font-size: 1rem;
    height: 3rem;
    padding-left: 0.5rem;
}

.dropdown{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 2rem;
}

.dropdown i{
    font-size: 1.5rem;
    margin-top: 1rem;
}

.select-container img{
    max-width: 2rem;
}

.select-container{
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 0.5rem;
    border: 1px solid black;
    width: 6rem;
    background-color: #90E0EF;
}

.select-container select{
    font-size: 1rem;
    width: auto;
}

.msg{
    margin: 2rem 0 1rem 0;
    text-align: center;
    font-weight: 900;
    font-size: 1.4rem;
}

form button{
    height: 3rem;
    background-color: #03045E;
    color: white;
    font-size: 1.15rem;
    cursor: pointer;
    border: 2px dashed #e4faffcf;
}

.foot{
    text-align: center;
    height: auto;
    width: 100%;
    padding: 0.6rem 0 0.6rem 0;
    font-size: 1.1rem;
    background-color: #CAF0F8;
    box-shadow: 2px 2px 50px black inset;
}
.foot a{
    color: black;
    text-decoration: none;
    font-size: 1.6rem;
    font-style: italic;
}
.foot p, h1{
    padding: 0 0 0.4rem 0;
}
.updatedat{
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    margin-bottom: 1rem;
}

.content{
    margin-left: 2rem;
    font-size: 1.4rem;
    padding-bottom: 2rem;
    margin-right: 1rem;
}
