@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;
}

.work-samples{
    width: 70%;
    margin: auto;
    text-align: center;
    padding-top: 100px;
}

.skills{
    width: 70%;
    margin: auto;
    text-align: center;
    padding-top: 100px;
}

.contact{
    width: 70%;
    margin: auto;
    text-align: center;
    padding-top: 100px;
    margin-bottom: 10%;
}

h1{
    font-size: 35px;
    font-weight: 600;
    margin-bottom: 20px;
}

h3{
    text-align: center;
    font-weight: 600%;
    margin: 10px 0;
    color: var(--primary-color);
}

.row p{
    font-size: 15px;
    line-height: 22px;
    padding: 10px;
    color: var(--primary-color);
}

.row p a{
    color: rgb(250, 100, 0);
    text-decoration: underline; 
}

.row{
    margin-top: 5%;
    display: flex;
    justify-content: space-between;
    margin-bottom: 5%;
}

.projects{
    flex-basis: 31%;
    background: whitesmoke;
    border-radius: 10px;
    margin-bottom: 5%;
    padding: 20px 12px;
    box-sizing: border-box;
    transition: 0.5s;
}

.projects:hover{
    box-shadow: 0 0 20px 0 var(--secondary-color);
}

.footer{
    padding: 30px 20%;
    background-color: var(--primary-color);
}
.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;
}
