/*MOTHERSHIP STYLES*/
* {
    box-sizing: border-box;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    list-style: none;
    margin: 0;
    padding: 0;
    text-decoration: none;
}

body {
    background: #000000;
    color: gray;
    height: 100%;
    overflow-x: hidden;
}


/*STYLESHEET*/
.intro {
    height: 79vh;
    padding: 19em 0 10px 1em;
}

.intro h1 {
    color: #f9c72d;
    font-size: 6em;
    padding: 0 0 5px 0;
}

.intro p {
    font-size: 32px;
    padding: 5px 0 3em 0;
}

.intro-dot {
    color: #f9c72d;
    font-size: 30px;
}

.intro-next {
    align-items: center;
    text-align: center;
    justify-content: center;
    padding: 6em 0 0 0;
}

.intro-next-arrow {
    color: #f9c72d;
    cursor: pointer;
    font-size: 20px;
    padding: 0 0 10px 0;
}

.current-projects {
    justify-content: center;
    text-align: center;
    background: white;
    min-height: 100vh;
    padding: 15em 0 0 0;
}

.current-projects h1 {
    color: #000000;
    font-size: 6em;
    padding: 0 0 10px 0;
}

.current-projects h3 {
    color: #000000;
    font-weight: 100;
    margin: 14em 0 0 0;
}

.reconstruction {
    align-items: center;
    display: flex;
    justify-content: center;
    background: #ffed00;
    color: #000000;
    font-size: 20px;
    gap: 1em;
    margin: 7px 0 7px 0;
    padding: 13px;
}

.reconstruction-icon {
    color: #f35614;
}

.wip {
    align-items: center;
    display: flex;
    justify-content: center;
    padding: 0 0 10px 0;
}

.wip h3 {
    color: #000000;
    font-size: 22px;
    font-weight: 100;
    text-align: center;
}

.wip p {
    background: #000000;
    border-radius: 7px;
    color: #ffed00;
    cursor: pointer;
    font-size: 18px;
    margin: 10px 0 0 10px;
    padding: 10px;
    text-align: center;
    width: 150px;
}

/*MOBILE RESPONSIVENESS*/
@media (max-width: 768px) {
    .header {
        flex-direction: column;
        align-items: flex-start;
        height: auto;
        padding: 15px 20px;
    }

    .header nav ul {
        flex-direction: column;
        width: 100%;
        gap: 1em;
    }

    .intro {
        padding: 6em 1em 10px 1em;
    }

    .current-projects {
        padding: 5em 1em 3em 1em;
    }

    .current-projects h3 {
        margin: 3em 0 0 0;
    }

    .intro h1 {
        font-size: 2.5em;
    }

    .intro p {
        font-size: 18px;
    }

    .current-projects h1 {
        font-size: 2.5em;
    }

    .current-projects h3 {
        font-size: 16px;
    }

    .wip {
        padding: 0 1.5em;
        flex-wrap: wrap;
        flex-direction: column;
        align-items: center;
    }
}