@import url('https://fonts.googleapis.com/css2?family=Chivo+Mono:wght@200;600&family=IBM+Plex+Mono:wght@100;400;600&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Chivo Mono', monospace;
    font-family: 'IBM Plex Mono', monospace;
}

:root{
    --primary-color: black;
    --secondary-color: white;
}

body{
    background: var(--primary-color);
    color: var(--secondary-color);
}

.header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 10px 20%;
    background: black;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
}

.logo{
    font-weight: 500;
    color: var(--secondary-color);
    text-decoration: none;
    font-size: 30px;
    letter-spacing: 1px;
}

.navbar a{
    color: var(--secondary-color);
    text-decoration: none;
    font-size: 15px;
    margin-left: 20px;
    font-weight: 400;
}

.container{
    width: 100%;
    height: 100vh;
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

form{
    background: var(--primary-color);
    display: flex;
    flex-direction: column;
    padding: 2vw 4vw;
    width: 100%;
    max-width: 600px;
    border-radius: 10px;
}

form h3{
    color: var(--secondary-color);
    font-size: 40px;
    font-weight: 1000;
    margin-bottom: 20px;
}

form input, form textarea{
    border: 0;
    margin: 10px 0;
    padding: 20px;
    outline: none;
    background: var(--secondary-color);
    font-size: 15px;
    border-radius: 10px;
    color: var(--primary-color);
}

form button{
    padding: 15px;
    background: orangered;
    color: var(--secondary-color);
    font-size: 20px;
    border: 0;
    outline: none;
    cursor: pointer;
    width: 150px;
    margin: 20px auto 0;
    border-radius: 30px;
}

.footer{
    padding: 30px 20%;
    background-color: black;
}
.footer .social{
    text-align: center;
    padding-bottom: 25px;
    color: grey;
}

.footer .social a{
    font-size: 20px;
    color: inherit;
    width: 30px;
    height: 30px;
    line-height: 30px;
    display: inline-block;
    text-align: center;
    margin: 0 8px;
    opacity: 0.7;
}

.footer .social a:hover{
    opacity: 1;
}

.footer ul{
    margin: 0;
    padding: 0;
    list-style: none;
    font-size: 15px;
    line-height: 1;
    margin-bottom: 0;
    text-align: center;
}
 .footer ul li a{
    color: inherit;
    text-decoration: none;
    opacity: 0.7;
 }

.footer ul li a:hover{
        opacity: 1;
}

.footer ul li{
    display: inline-block;
    padding: 0 15px;
}

.footer .copyright{
    margin-top: 15px;
    text-align: center;
    color: grey;
    font-size: 10px;
}
