
  @import url('https://fonts.googleapis.com/css2?family=Signika:wght@400&display=swap');

body {
    background-color: #f2efea;
}

#titleRow {
    display: flex;
    justify-content: center;
    flex-direction: column;
}

#nameRow {
    display: flex;
    justify-content: center;
    font-family: 'Signika', sans-serif;
    font-size: 350%;
}

#subRow {
    display: flex;
    justify-content: center;
    font-family: 'Signika', sans-serif;
    font-size: 100%;
    margin-top: 1%;
}

.navbar {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    padding-top: 2vh;
    font-family: 'Signika', sans-serif;
    font-size: 130%;
}

.navbar a:visited {
    color: black;
}

.navbar a {
    text-decoration: none;
    color: black;
}

#introColumn {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

svg {
    fill: #f2efea;
}

.content {
    padding-top: 2vh;
}

#portfolio {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
}

.projects {
    font-family: 'Signika', sans-serif;
    transition: transform 0.1s;
    position: relative;
    width: calc(100%); 
	height: calc(100vh / 2.5);
}

.projects a {
    text-decoration: none;
    background: transparent;
}

.projects:hover {
  -ms-transform: scale(1.025); /* IE 9 */
  -webkit-transform: scale(1.025); /* Safari 3-8 */
    transform: scale(1.025); 
}

.styleA {
    background: #f2efea;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.styleA a {
    color: black;
    text-decoration: none;
}

.styleB {
    background: #f2efea;
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
}

.styleB a {
    color: black;
    text-decoration: none;
}

.links {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    margin-left: 10%;
    margin-right: 10%;
}

.emphasis {
    font-weight: bold;
    font-size: 110%;
    color: #f2efea;
}

h1 {
    color: #f2efea;
    font-size: 2em;
}

#project1 {
    background-image: 
    linear-gradient(to bottom, rgba(242, 239, 234, 1), rgba(0, 128, 128, 0.8)),
    url('../img/screener-cool.jpg');
    background-size: cover;
}

#project2 {
    background-image: 
    linear-gradient(to bottom, rgba(46, 155, 155, 0.8), rgba(240, 128, 128, 0.6)),
    url('../img/thesis-cool.png');
    background-size: cover;
}

#project3 {
    background-image: 
    linear-gradient(to bottom, rgba(240, 128, 128, 0.6), rgba(100, 149, 237, 0.8)),
    url('../img/100days-cool.png');
    background-size: cover;
}

#project4 {
    background-image: 
    linear-gradient(to bottom, rgba(100, 149, 237, 0.8), rgba(242, 239, 234, 1)),
    url('../img/covid.png');
    background-size: cover;
}

#project5 {
    background-image: 
    linear-gradient(to bottom, rgba(242, 239, 234, 1), rgba(0, 128, 128, 0.8)),
    url('../img/aa.png');
    background-size: cover;
}

#project6 {
    background-image: 
    linear-gradient(to bottom, rgba(0, 128, 128, 0.8), rgba(240, 128, 128, 0.6)),
    url('../img/sensor-cool.jpg');
    background-size: cover;
}

#project7 {
    background-image: 
    linear-gradient(to bottom, rgba(240, 128, 128, 0.6), rgba(100, 149, 237, 0.8)),
    url('../img/met2.png');
    background-size: cover;
}

.sticky {
    position: fixed;
    top: 1%;
    width: 100%;
    z-index: 30;
}





#normal {
    fill: none;
    stroke: teal;
    stroke-width: 5;
    stroke-dasharray: 10000;
    stroke-dashoffset: 10000;
    animation: dash 3s linear forwards;
}

#log {
    fill: none;
    stroke: #FC7753;
    stroke-width: 5;
    stroke-dasharray: 10000;
    stroke-dashoffset: 10000;
    animation: dash 5s linear forwards;
}

#exp {
    fill: none;
    stroke: #4D6CFA;
    stroke-width: 5;
    stroke-dasharray: 10000;
    stroke-dashoffset: 10000;
    animation: dash 4s linear forwards;
}

svg {
    background: #F2EFEA;
}

@keyframes dash {
    to {
        stroke-dashoffset: 0;
    }
}