@import url('https://fonts.googleapis.com/css?family=Poppins:100,200,300,400,500,600,700,800,900|Poppins:400,700');

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

header {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 30px 10%;
}

.logo {
    height: 60px;
    width: 400px;
    position: absolute;
    left: 45px;
}

.nav__links {
    list-style: none;
    display: flex;
}

.nav__links a,
.cta,
.overlay__content a {
    /*font-family: 'Righteous', cursive;*/
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 20px;
    color: #D3D3D3;
    text-decoration: none;
}

.nav__links li {
    padding: 0 20px;
    margin-top: 15px;
    z-index: 1;
}

.nav__links li a {
    transition: all 0.5s ease 0s;
}

.nav__links a:hover {
    background-color: #00fcb0;
    color: #121212;;
    border-radius: 10px;
}

.cta {
    margin-left: 20px;
    padding: 9px 25px;
    /*background-color: #D3D3D3;*/
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease 0s;
    z-index: 1;
}

.cta:hover {
    background-color: #00fcb0;
    color: #24252a;
    z-index: 1;
}

/* Mobile Nav */

.menu {
    display: none;
    z-index: 1;
}

.overlay {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    background-color: #24252a;
    overflow-x: hidden;
    transition: all 0.5s ease 0s;
}

.overlay--active {
    width: 100%;
}

.overlay__content {
    display: flex;
    height: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.overlay a {
    padding: 15px;
    font-size: 36px;
    display: block;
    transition: all 0.3s ease 0s;
}

.overlay a:hover,
.overlay a:focus {
    color: #00fcb0;
}
.overlay .close {
    position: absolute;
    top: 20px;
    right: 45px;
    font-size: 60px;
    color: #D3D3D3;
    cursor: pointer;
}
