body {
    position: fixed;
    width: 100%;
    height: 100%;
    background: #000000;
    margin: 0;
    padding: 0;
    overscroll-behavior: none;
}

#togglebutton{
    position: absolute;
    height: fit-content;
    width: fit-content;
    background-color: white;
    margin-top: 3%;
    margin-left: 90%;
}
.right-content {
    position: absolute;
    height: 100vh;
    width: fit-content;
    margin-top: -5%;
    margin-left: 2%;
    /* display: none; */
}

#content {
    position: relative;
    width: 500px;
    height: 200px;
    z-index: 2;
    margin-top: 10%;
    margin-left: 10%;
    justify-content: center;
    color: white;
    
    display: block;
    /* animation: bounce-text 0.7s linear forwards; */
}

/* #content h1{
    font-size: 50px;
    
}

#content p {
    font-size: 30px;
} */

@keyframes bounce-text {
    0% {
        margin-top: 20%;
        margin-left: 10%;
    }
    33% {
        transform: translateY(20px);
    }
    66% {
        transform: translateY(-20px);
    }
}

.sos {
    position: relative;
    width: 350px;
    height: 70px;
    border-radius: 50px;
    margin-top: 28%;
    margin-left: 10%; 
    display: block;
    background: #000000;
   
}
.sos:hover #black {
    width: 350px;
    
}
#black {
    position: absolute;
    width: 0;
    height: 70px;
    margin-left: 2%;
    border-radius: 50px;
    z-index: 0;
    background: rgba(253, 253, 253, 0.3);
    display: flex;
    overflow: hidden;
    transition: 0.7s ease;
}
.sos p {
    position: absolute;
    margin-left: 28%;
    margin-top: 8%;
    background: linear-gradient(90deg, #fff, rgb(133, 132, 132), #000000);
    background-size: 300%;
    font-size: 20px;
    font-weight: 1em;
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    animation: animate 3s linear infinite;
    font-weight: 900;
    
}
@keyframes animate {
    0%{
        background-position: 120%;
    }
    100% {
        background-position: 20%;
    }
}
#red_sos {
    position: absolute;
    width: 71px;
    height: 71px;
    margin-top: 0;
    margin-left: 0.5%;
    background-color:  #8f050c;
    border-radius: 50%;
    cursor: pointer;
    z-index: 2;
    
}

#red_sos h1 {
    color: white;
    margin-top: 35%;
    margin-left: 20%;
    font-size: 20px;
}



