@import url(https://fonts.googlapis.com/css?family=Montserrat:500);

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    background-color: #24252a;
}

li, a, button {
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    font-size: 16px;
    color: #edf0f1;
    text-decoration: none;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 10%;
}

.logo {
    cursor: pointer;
}

.nav_links {
    list-style: none;
}

.nav_links li {
    display: inline-block;
    padding: 20px 80x;
}

.nav_links li a {
    transition: all 0.3s ease 0s;
    }

.nav_links li a:hover {
    color: #0088a9
}

button {
    background: transparent;
    border: none;
    padding-left: 0%;
}

.button {
    padding: 9px 25px;
    background-color: rgba(0,136,169,1);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease 0s;
}

button:hover {
    background-color: rgba(0,136,169,0.8);
}

h1 {
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    font-size: 30px;
    color: #edf0f1;
    text-decoration: none;
    text-align: center;
}
h2 {
    font-family: "Montserrat", sans-serif;
    font-weight: 200;
    font-size: 20px;
    color: #edf0f1;
    text-decoration: none;
    text-align: center;
}

p {
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    font-size: 20px;
    color: #edf0f1;
    text-decoration: none;
    text-align: center;
}

label, input {
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    font-size: 16px;
    color: #edf0f1;
    text-decoration: none;
}

.name {
    background-color: #edf0f1;
    border-radius: 5px;
}
input[type=text] {
    width: 100%;
    padding: 12px 20px;
    margin: 8px 0;
    box-sizing: border-box;
}
.submit{
    padding: 9px 25px;
    background-color: rgba(0,136,169,1);
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease 0s;
}
.submit:hover {
    background-color: rgba(0,136,169,0.8);
}

.container {
    width: 100%;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.typing {
    color: #edf0f1;
    font-size: 20;
}

span {
    color: #34d4fc;
}

.projects {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 10%;
}

#im {
    width: 39%;
}


.link {
    list-style: none;
    position: relative;
    top: 20vh;
}

.links{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);   
}
.links p{
    text-align: center;
    background-color: white;
    color: #24252a;
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    font-size: 20px;
    margin-bottom: 50px;
}

.links div{
    width:30em;
    height: 3em;
}
.center{
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
}

.instagram{
    background-color: white;
    margin-bottom: 1em;
    padding: 1em;
    border-radius: 5px;

}

.facebook{
    background-color: white;
    margin-bottom: 1em;
    padding:1em;
    border-radius: 5px;
}

.reddit{
    background-color: white;
    margin-bottom: 1em;
    padding: 1em;
    border-radius: 5px;
}
