* {
    margin: 0;
    padding: 0;
    border: 0;
    font-family: sans-serif;
}

body {
    background-color: #000;
    color: #fff;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 12px;
    line-height: 1.5em;
}

.navbar {
    width: 100%;
    height: 50px;
    background-color: #333;
    color: #fff;
    display: flex;
}

.navbar-ul {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
}

.navbar-ul li {
    list-style-type: none;
    padding: 20px;
    font-size: 1.4em;
}

.navbar-ul li a {
    color: #fff;
    text-decoration: none;
}

.navbar-ul li a:hover {
    color: #ccc;
}

.navbar .menu {
    display: none;
    font-size: 2em;
    height: 50px;
    justify-content: center;
    align-items: center;
}

.whoami {
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.whoami h1 {
    font-size: 3.5em;
    padding: 20px;
    font-weight: 100;
}

.name-div {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 25px 0;
    font-size: 4em;
}

.name {
    position: absolute;
    width: 100%;
    text-align: center;
    font-weight: 900;
}

.nickname {
    position: absolute;
    width: 100%;
    text-align: center;
    font-weight: 900;
    opacity: 0;
}

.whoami h2 {
    font-size: 2.8em;
    padding: 20px;
    font-weight: 100;
}

.notthisbutworse {
    font-size: 3.8em;
    padding: 20px;
    font-weight: 700;
}

.canworkwith {
    width: 100%;
    height: 50vh;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: flex-start;
}

.canworkwith .heading {
    font-size: 3.5em;
    padding: 20px;
    font-weight: 100;
}

.canworkwith-ul {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100%;
    flex-wrap: nowrap;
    align-content: center;
}

.canworkwith-ul li {
    list-style-type: none;
    display: none;
}

.canworkwith-ul #canworkwith-main-li {
    display: block;
    padding: 20px;
    font-size: 2em;
}

.contact {
    width: 100%;
    height: 50vh;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: flex-start;
}

.contact .heading {
    font-size: 3.5em;
    padding: 20px;
    font-weight: 100;
}

.contact .contact-ul {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    flex-wrap: nowrap;
    align-content: center;
}

.contact .contact-ul li {
    list-style-type: none;
    padding: 20px;
    font-size: 2em;
}

.contact .contact-ul li a {
    color: #fff;
    text-decoration: none;
}

@media screen and (max-width: 768px) {
    .navbar .menu {
        display: flex;
        position: absolute;
    }
    .navbar {
        height: auto;
    }
    .navbar-ul {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .navbar-ul li {
        padding: 0;
        font-size: 0em;
        height: 0;
        transition: all 0.5s cubic-bezier(0.4, 0, 1, 1);
    }
}