:root{
    --pink: #dc9dfd;
    --blue: #7cb3e6;
}

::selection{
    color: #000;
    background-color: var(--pink);
}

body{
    color: #fff;
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    background-color: #1a1a1a;
    overflow-x: hidden;
}

h1{
    margin: 0;
    background: linear-gradient(45deg,var(--pink),var(--blue));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

h2{
    margin: 0;
}

img{
    position: relative;
    border-radius: 50%;
    box-shadow: 0px 0px 20px #141414;
    /*
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2),
     0 6px 20px 0 rgba(0, 0, 0, 0.19);
    box-shadow: 0 6px 20px 0 var(--pink),
     0 6px 20px 0 var(--pink),0 6px 20px 0 var(--pink);*/
}

.img-wrapper{
    margin: 0 auto;
    width: fit-content;
}

.nice-rounded-button{
    padding: 12px;
    border: none;
    outline: none;
    border-radius: 10px;
    font-size: 20px;
    transition: ease-in-out 0.2s;
    border: 2px solid var(--pink);
    z-index: 0;
    position: relative;
}

.nice-rounded-button::before{
    content: '';
    background-color: var(--pink);
    position: absolute;
    top: -2px;
    left:-2px;
    z-index: -1;
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    filter: blur(10px);
}

.nice-rounded-button::after{
    z-index: -1;
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: #000;
    left: 0;
    top: 0;
    border-radius: 10px;
}

.nice-rounded-button:hover{
    transition: ease-in-out 0.2s;
    transform: scale(1.1);
    filter: hue-rotate(-20deg);
    cursor: pointer;
    /*border: 2px solid var(--blue);*/
}

.nice-rounded-button:hover::before{
    /*background-color: var(--blue);*/
}

span{
    vertical-align: bottom;
}

.center{
    margin: 0 auto;
    width: fit-content;
}

.pink{
    color: #000;
    background-color: var(--pink);
}

.black{
    color: #fff;
    background-color: #000;
}

.features-container{
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.item{
    margin: 0 10px;
    text-align: center;
    width: 20rem;
}

.contact{
    position:absolute;
    bottom: 0;
    left: 0;
    /* translate: -50%; */
    display: flex;
    justify-content: center;
    flex-direction: row;
    padding: 10px 0;
    word-wrap: none;
    overflow: visible;
    width: 100vw;
    background-color: #222222;
    box-shadow: 0px 0px 20px #111111;
}

.contact > a{
    color: #fff;
    background: linear-gradient(45deg,var(--pink),var(--blue));
    background-size: 250%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-decoration: none;
}

.contact > span {
    padding: 0 5px;
}

.contact > a:hover{
    text-decoration: underline;
}

@media (min-width: 801px){
    h1{
        font-size: 64px;
    }
}

@media (max-width: 800px){

    h1{
        font-size: 48px;
    }

    .features-container{
        flex-direction: column;
        align-items: center;
    }

    .item{
        margin-bottom: 4rem;
    }

    .contact{
        position: relative;
    }
}

@media (max-height: 865px){
    .contact{
        position: relative;
    }
}