/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* BODY */
body {
    background-color: #0b0b0b;
    color: #cfcfcf;
    font-family: 'Inter', sans-serif;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeSpeed;
}

/* CONTAINER */
.container {
    margin: 0 auto;
    padding: 40px 20px;
}

/* HEADER */
.header {
    text-align: center;
    margin-bottom: 20vh;
    padding-top: 32vh;
}

.header img {
    width: 100%;
    max-width: 900px;
    display: block;
    margin: 0 auto;
}

/* TAGLINE */
.tagline {
    text-align: center;
    margin-bottom: 30vh;
}

.tagline p {
    font-size: 20px;
    letter-spacing: 0.5px;
    color: #ffffff;
}

/* SECTION COMMON */
section {
    margin-bottom: 40px;
}

h3 {
    font-size: 17px;
    color: #ffffff;
    margin-bottom: 13px;
    text-align: left;
}

/* ABOUT TEXT */
.about {
    margin-bottom: 60px;
    text-align: justify;
    padding-left: 24vw;
    padding-right: 16vw;
}

.about p {
    line-height: 1.4;
    font-size: 17px;
    color: #9e9e9e;
    max-width: 750px;
    margin: 0;
}

.founder {
    text-align: right;
    margin-top: 40px;
    padding-top: 30px;
    margin-bottom: 40px;
    color: #9e9e9e;
    font-size: 13px;
    line-height: 1.8;
}

.ps-note {
    margin-top: 50px !important;
    font-size: 13px;
    color: #9e9e9e;
    line-height: 1.4;
}

/* FOOTER */
.footer {
    margin-top: 20vh;
    text-align: center;
}

.footer hr {
    border: 0;
    height: 1px;
    background: #ffffff;
    margin-bottom: 15px;
}

.footer p {
    font-size: 13px;
    color: #888;
}

/* TOP MAIL ICON */
.topmail {
    position: absolute;
    top: 7vh;
    right: 4vw;
    z-index: 1000;
}

.topmail a {
    color: #cfcfcf;
    text-decoration: none;
}

.topmail a:hover {
    color: #ffffff;
}

.topmail img {
    width: 1.8vw;
    height: 1.2vw;
}

/* FADE IN ANIMATION — elements start invisible */
.header,
.tagline,
.about,
.footer {
    opacity: 0;
    transition: opacity 0.5s ease-in;
}

/* JS adds this class to trigger fade */
.header.visible,
.tagline.visible,
.about.visible,
.footer.visible {
    opacity: 1;
}

/* MOBILE */
@media (max-width: 768px) {
    .topmail {
        top: 6vh;
        right: 5vw;
    }
    .topmail img {
        width: 24px;
        height: 18px;
    }
    .tagline p {
        font-size: 13px;
        letter-spacing: 1px;
    }
    h3 {
        padding-left: 3.5vw;
    }
    .about h3 {
        text-align: left;
        font-size: 13px;
    }
    .about {
        padding-left: 0;
        padding-right: 0;
    }
    .about p {
        font-size: 13px;
        line-height: 1.7;
        text-align: justify;
        padding-left: 3vw;
        padding-right: 3.5vw;
        max-width: 100%;
    }
    .founder {
        text-align: right !important;
        padding-left: 0 !important;
        padding-right: 3.5vw;
    }
    .ps-note {
        margin-top: 40px !important;
        text-align: left !important;
    }
    .footer p {
        font-size: 11px;
    }
}
