html, body {
    height: 100%; 
    margin: 0; 
}


body {
    display: flex;
    flex-direction: column; 
    background-image: url(https://wallpapers.com/images/hd/black-and-purple-aesthetic-makeup-cfiat37lv1c91boo.jpg);
    background-size: cover;
    background-position: center;
}

.content {
    flex: 1; 
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    .head{
        font-family: sans-serif;
        font-size: 48px;
        background: linear-gradient(90deg, 
            deeppink, hotpink, pink, beige);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }
}

footer {
    background-color: #ffb8d8; 
    font-family: sans-serif;
    padding: 20px; 
    text-align: center; 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    margin-top: 160px;
    flex-direction: column;
}
.footer-section {
    margin: 0 20px; 
}

.footer-section h3 {
    margin: 0; 
}

.footer-section p, .footer-section a {
    margin: 5px 0;
}

.social-icons img {
    width: 24px; 
    height: 24px; 
    margin: 0 10px; 
}

.head {
    font-size: 4em;
    margin-top: 100px;
    font-family: cursive;
}
.flwus{
    font-family: sans-serif;
    font-weight: 900;
    font-size: 2em;
    margin-top: -10px;
    color: fuchsia;
}

.loadinggif {
    padding: 0%;
    width: 180px;
    height: 200px;
}

.btn {
    
    --glow-color: rgb(217, 176, 255);
    --glow-spread-color: rgba(191, 123, 255, 0.781);
    --enhanced-glow-color: rgb(231, 206, 255);
    --btn-color: rgb(100, 61, 136);
    border: .25em solid var(--glow-color);
    padding: 20px;
    color: var(--glow-color);
    font-family: sans-serif;
    font-size: 20px;
    font-weight: 900;
    background-color: var(--btn-color);
    border-radius: 1em;
    outline: none;
    box-shadow: 0 0 1em .25em var(--glow-color),
           0 0 4em 1em var(--glow-spread-color),
           inset 0 0 .75em .25em var(--glow-color);
    text-shadow: 0 0 .5em var(--glow-color);
    position: relative;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
   }
   
   .btn:after {
    pointer-events: none;
    content: "";
    position: absolute;
    top: 120%;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: var(--glow-spread-color);
    filter: blur(2em);
    opacity: .7;
    transform: perspective(1.5em) rotateX(35deg) scale(1, .6);
   }
   
   .btn:hover {
    color: var(--btn-color);
    background-color: var(--glow-color);
    box-shadow: 0 0 1em .25em var(--glow-color),
           0 0 4em 2em var(--glow-spread-color),
           inset 0 0 .75em .25em var(--glow-color);
    display: flex;
   }
   
   .btn:active {
    box-shadow: 0 0 0.6em .25em var(--glow-color),
           0 0 2.5em 2em var(--glow-spread-color),
           inset 0 0 .5em .25em var(--glow-color);
   }


.imgbtn {
    margin-right: 5px;
    width: 40px;
    height: 40px;
    display: flex;
    padding-left: 0%;
}
#flex{
    display: flex;
    width: 100%;
    justify-content: space-around;
}
@media (max-width: 768px) {
    #flex{
        display: flex;
        flex-direction: column;
    }
    body{
        background-image: url(https://wallpapers.com/images/hd/black-and-purple-aesthetic-makeup-cfiat37lv1c91boo.jpg);
    }
}