body {
	background: #222;
	margin: 0rem;
	min-height: 100vh;
	font-family: "Nunito", sans-serif;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}
#canvas, #text {
	position: fixed;
	display: block;
	top: 0;
	left: 0;
	z-index: -1;
}

.title-pf {
    font-size:4rem;
    color: #fff;
}

.desc-pf {
    font-size: 1.75rem;
    color: #fff;
}

.btn-pf {
    background-color: #fff;
    color: #222;
    font-weight: bold;
    border: 3px solid #fff;
    font-size: 1.25rem;
    padding: 0.5rem 1rem;
    transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
}

.btn-pf:hover {
    background-color: transparent;
    color: #fff;
}

.title-s {
    font-size:4rem;
    color: #222;
    font-weight: 600;
}

.title-s-2 {
    font-size:4rem;
    color: #fff;
    font-weight: 600;
}

.vertical-navbar {
    background-color: #1b1b1b;
    border: 3px solid #111;
    position: fixed;
    transform: translate(-50%,-50%);
    display: flex;
    flex-direction: column;
    padding: 1rem;
    border-radius: 50px;
}

.projects-date {
    font-size: 0.90rem;
    color: rgb(117, 117, 117);
    font-weight: normal;
}

.project-animation {
    animation: fadein 0.25s ease-in-out;
}

@keyframes fadein {
    from {
        opacity: 0%;
    }
  
    to {
        opacity: 100%;
    }
  }