

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: sans-serif;
    -webkit-user-select: none; /* Safari */        
    -moz-user-select: none; /* Firefox */
    -ms-user-select: none; /* IE10+/Edge */
    user-select: none; /* Standard */
}

body {
    background: -webkit-gradient(linear, left top, left bottom, from(#83d6ff), to(#05a3ff)) fixed;
}

::selection{
    color: #fff;
    background: #937ec7;
}

.wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    max-width: 450px;
    width: 100%;
    background: #fff;
    border-radius: 10px;
    transform: translate(-50%, -50%);
    box-shadow: 10px 10px 15px rgb(0, 0, 0, 0.28);
    padding: 30px 30px;
    height: 250px;
}

.wrapper header{
    font-size: 23px;
    font-weight: 500;
    padding: 0;
}

.wrapper:hover{
    cursor: move;
}

.wrapper header.active{
    cursor: move;
    user-select: none;
}

.wrapper .content{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 30px 30px 40px 30px;
}

.content .icon{
    height: 95px;
    width: 95px;
    border-radius: 50%;
    border: 5px solid #6F36FF;
    display: flex;
    justify-content: center;
    align-items: center;
}

.content .icon i{
    color: #6F36FF;
    font-size: 60px;
}

.content .title{
    margin: 15px 0;
    font-size: 28px;
    font-weight: 500;
}

.content p{
    font-size: 16px;
    text-align: center;
}

.logo{

    position: absolute; height: auto; 

    width: 30%; right: 8%; top: 12%;
}