@import url("https://fonts.googleapis.com/css?family=Poppins:wght@300;400;500;600;700");


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', 'sans-serif';
}

body {
    background: #f9f9f9;
    min-height: 100vh;
    overflow: hidden;

}

header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 30px 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
}

.logo {
    font-size: 2em;
    color: #ce9eff;
    pointer-events: none;
}

.navigation a,
.navigation input[text=text] {
    text-decoration: none;
    color:#ce9eff;
    padding: 6px 15px;
    border-radius: 20px;
    margin: 0 10px;
    font-weight: 600;
}

.navigation a:hover,
.navigation a.active,
.navigation input[text=text] {
    background: #ce9eff;
    color: #f9f9f9;
}



.neuroman {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

#text {
    position: absolute;
    font-size: 5cm;
}