#grid-area{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    height: 100vh;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 30px;
    /* background-image: radial-gradient(circle at 100% 0%, #a962db 0, #8351d8 25%, #4d42d4 50%, #0037d0 75%, #0031cd 100%); */
    position: relative;
    padding: 0 30px;
    z-index: 99;
}

#grid-area::before{
    content: '';
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100vh;
    background: url("../img/blue-bg.png");
    opacity: .1;
    z-index: -1;
}

.grid-area-component{
    padding: 40px 20px;
    border-radius: 10px;
    backdrop-filter: blur(2px);
    background: rgba(255, 255, 255, .2);
    line-height: 4;
    transition: all .5s;
    box-shadow: 0px 20px 40px 0px rgba(0,0,0,0.1);
}

.grid-area-component:hover{
    backdrop-filter: blur(5px);
    background: rgba(255, 255, 255, .5);
}

p{
    line-height: 2 !important;
    margin-bottom: 10px;
}

button{
    padding: 15px 30px;
    color: white;
    background: rgba(0, 0, 0, .5);
    border-radius: 50px;
    transition: all .5s;
    cursor: pointer;
}

button:hover{
    background: black;
}

#logo{
    position: fixed;
    top: 50px;
    left: 30px;
    border-radius: 5px;
    z-index: 100;
    cursor: pointer;
    transition: all .5s;
    width: 150px;
    backdrop-filter: blur(3px);
    background: rgba(255, 255, 255, .5);
}

#back-index{
    position: fixed;
    top: 50px;
    right: 31px;
    padding: 10px 15px;
    color: var(--light);
    background: var(--blue_lavender);
    border-radius: 5px;
    z-index: 100;
    cursor: pointer;
    transition: all .5s;
}

#back-index:hover{
    padding-right: 30px;
    border-radius: 50px 10px 10px 50px;
}

@media screen and (max-width: 768px) {
    #grid-area{
        display: flex;
        flex-direction: column;
        margin: 50px 0;
        margin-top: 60px;
        height: auto;
    }
    #back-index{top: 14px; padding: 5px 10px;}
    #logo{top: 10px;}
    img{width: 150px;}
}