@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');
/* 
*{
    box-sizing: border-box;
    padding: 0;
    margin: 0;
} */

.scroll-text a,.scroll-text a:visited{
    text-decoration: none;
    color: rgb(255, 255, 255);
    text-transform: uppercase;
    font-weight: 600;
    transition: all 0.3s ease-in-out;
}
.scroll-text a:hover{
    color: rgb(5, 32, 237);
}

.alert_message {
    padding: 0.65rem;
    padding-left: 5rem;
    background-color: #f52819;
    color: white;
    font-size: 1.5rem;
    opacity: 1;
    transition: opacity 0.6s;
    font-family: 'Poppins';
    white-space: nowrap;
    overflow: hidden;
}

.scroll-text{
    display: inline-block;
    transform: translateX(100%);
    animation: scroll-text-animation 60s linear infinite;
}


  
@keyframes scroll-text-animation {
    from {
      transform: translateX(0%);
    }
    to {
      transform: translateX(-100%);
    }
}

.closebtn {
    margin-left: 15px;
    color: white;
    font-weight: bold;
    float: right;
    font-size: 2rem;
    line-height: 20px;
    cursor: pointer;
}

