* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
}

.logo{
    display: flex;
    color: white;
    font-weight: bold;
    
}
.logo img{
    
    width: 50px;
    border-radius: 40px;
    margin: 0px 10px;
}
#logotext{
    margin: 10px 5px;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #b7062f;
    padding: 10px 10px;
    
}

.nav-list {
    display: flex;
    list-style: none;
}

.nav-list li {
    margin: 4px 20px;
    /* border: .8px solid rgb(198, 232, 97);
    border-radius: 20px; */
}

.nav-list a {
    color: rgb(253, 250, 119);
    text-decoration: none;
    /* padding: 3px; */
    font-weight: bold;  
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
   
}

.bar {
    height: 4px;
    width: 25px;
    background: white;
    margin: 3px 0;
}

@media (max-width: 768px) {
    .logo{
        margin: auto;
        
    }
    #logotext{
        font-size: 15px;
        margin: 18px 0px;

    }

    .nav-list {
        display: none;
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 70px;
        left: 0;
        background: #b7062f;
        padding: 3px 0px;
        
        /* z-index: 1; */
        
    }

    .nav-list.active {
        display: flex;
        z-index: 1;
        
        
    }

    .menu-toggle {
        display: flex;
        
        
    }
   

}


.notice-container {
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 10px;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    
}
.running-notice {
    display: inline-block;
    padding-left: 100%; /* Start off the screen */
    animation: scroll 25s linear infinite;
    color: black;
    font-size: 18px;
    font-weight: bold;
}
@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

a{
    text-decoration: none;
}


.container{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: auto;
   max-width: 80vw;
    

}

.heading{
    display: flex;
    margin: 5px 0px;
    width: 100%;
    /* height: 40px; */
    justify-content: start;
    padding: 6px 10px;
    background: rgb(243, 200, 143);
    
    
}


a{
    text-decoration: none;
}

.self-content-container{

    display: flex;
    flex-wrap: wrap;
    max-width: 80vw;
    text-align: center;
    justify-content: center;
    margin: auto;
    border: 2px solid black;
    padding: 20px;
    font-size: 20px;
    /* text-transform: lowercase; */
    font-weight: bold;

}
.disclaimer-heading{
    display: flex;
    background-color: #b7062f;
    font-weight: bold;
    color: white;
    margin: 20px 0px;
    width: 100%;
    text-align: center;
    justify-content: center;
    text-transform:uppercase;
    

}

.content{
    display: flex;
    justify-content: center;
    text-align: center;
    margin: auto;
    color: black;
    font-family: Arial, Helvetica, sans-serif;
    width: 80vw;
    text-wrap: wrap;
    
    
  
}
.content ul li{
    list-style: none;
   
}


.welcome{
    margin: 30px 0px 0px 0px;
}
.content-media-account{
    margin: 0px 0px 30px 0px;
}
.content-disclaimer{
    display: flex;
    justify-content: center;
    text-align: center;
    margin: auto;
    color: black;
    font-family: Arial, Helvetica, sans-serif;
    width: 80vw;
    text-wrap: wrap;
  
}
.disclaimer-text{
    margin: 0px 0px 30px 0px;
    color: red;
}




.footer1{
    display: flex;
    flex-wrap: wrap;
    justify-content:space-between;
    align-items: center;
    bottom: 0vh;
    background-color: #b7062f;
    padding: 10px;
    
    font-size: 20px;
    margin: 10px 0px 0px 0px;
    
}
.copyright{
 
    color: white;
    font-size: 15px;
}

.privacy{
color: rgb(181, 201, 248);
font-size: 15px;
margin: 5px 5px;
    
}

.disclaimer{
    color: rgb(181, 201, 248);
    font-size: 15px;
    margin: 5px 10px;
        
    }
.social-media{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 0px 5px 0px 0px;
    /* font-size:15px; */
    /* width: 250px; */
    
}
.social-icon{
    width: 20px;
    margin: 0px 13px;
    border-radius: 10px;
}

.disclaimer-privacy{
    display: flex;
    flex-wrap: wrap;
    justify-content: end;
}
