@import url('https://fonts.googleapis.com/css?family=Montserrat:500');
* {
 box-sizing: border-box;
 margin: 0;
 padding: 0;
 background-color: #24252A;
}

li, a, button {
    font-family: "Montserrat", Verdana, sans-serif;
    font-weight: 500;
    font-size: 12px;
    color: #edf0f1;
    text-decoration: none;
}
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 1%;
}
.logo {
    cursor: pointer;
}
.nav_links{
    list-style: none;
}
.nav_links li {
    display: inline-block;
    padding: 0px 30px;
}
.nav_links li a{
    transition: all 0.3s ease 0s;
}
.nav_links li a:hover{
    color:#417691;
}
button {
    padding: 5px 25px;
    background-color: #32383a;
    border:none;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease 0s;
}
.cta {
    background-color: #417691;
    border:none;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease 0s;
}
.secondary {
    background-color: #32383a;
    border:none;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease 0s;
}
.insta {
    background-color: #a64c64;
    border:none;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease 0s;
}

