body{
    background-color: black;
    color: white;
    min-height: 100vh;
    position: relative;
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
}

ul{
    display: flex;
    list-style-type: none;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    margin: 0;
}

a{
    color: white;
    text-decoration: none;
}

header img{
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 5px solid #6A0DAD;
}

.center{
    text-align: center;
}

main{
    padding: 20px;
}
.criador-sites {
    font-family: 'Oxanium', sans-serif;
    font-weight: 300;
    color: #E5E7EB;
    letter-spacing: 6px;
    text-transform: uppercase;
}

footer{
    display: flex;
    justify-content: space-between;
    text-align: center;
    margin-top: 30px;
}

footer a{
    color: white;
}

footer img{
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 3px solid #6A0DAD;
}

input{
    width: 100%;
    max-width: 550px;
    padding: 8px;
    margin: 8px 0;
    box-sizing: border-box;
}

input[type="text"]{
    height: 100px;
}

button{
    background-color: #6A0DAD;
    color: white;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    border-radius: 5px;
}

button:hover{
    opacity: 0.9;
}

.feixe{
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    height: 50vh;
    background: linear-gradient(
        to bottom,
        #6A0DAD,
        transparent
    );
    filter: blur(40px);
    pointer-events: none;
    z-index: -1;
}