/*//////////////
APPLY TO ALL
/////////////*/

*{
	font-family: "Space Grotesk", sans-serif;
	color: #343636;
	font-weight: 400;
	scroll-behavior: smooth;
	background-color: #f7f7f7;
    
}

ul{
	list-style-type: none;
	margin: 0;
}

body {
    animation: fadeInAnimation ease 3s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
}
 
@keyframes fadeInAnimation {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
     }
}

.wordmark img{
    height: 50px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-top: 100px;
}

.line-1{
    padding-top: 25px;
}

.line-1 h1{
    font-size: 16pt;
    font-family: "Space Grotesk", sans-serif;
    font-weight: 500;
    letter-spacing: 20px;
    text-align: center;
}

.line-2 h1{
    font-size: 16pt;
    font-family: "Space Grotesk", sans-serif;
    font-weight: 500;
    letter-spacing: 19px;
    text-align: center;
}

.portfolio img{
    height: 250px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-top: 100px;
    margin-bottom: 100px;
}

.links{
    width: 100%;
    text-align: center;
    padding-bottom: 25px;
}

.links a{
    /* background-color: paleturquoise; */
    font-size: 10pt;
    font-family: "Space Grotesk", sans-serif;
    font-weight: 400;
    letter-spacing: 5px;
    text-align: center;
    color:#343636;
    transition: .2s ease-in-out !important;
}

.fontawesome{
    font-size: 8pt;
    padding: 0px 12px 0px 12px; 
}

.links i{
	/* padding-right: 12px; */
	transition: .2s ease-in-out;
}

.links:hover a{
	color:orange;
	transition: .3s ease-in-out !important;
    font-weight: 600;

}

.links:hover i{
	color:orange;
	padding-right: 6px;
	padding-left: 6px;
}

.animation-shrink{
	transition-duration: .3s;
	transition-property: transform;
}

.animation-shrink:hover{
	transform: scale(0.9);
	filter: saturate(1);
}

.socials{
    /* background-color: pink; */
    display: flex;
	align-items: center;
	justify-content: center;
    margin: 50px 100px 100px 100px;
    
}

.socials-cell i{
    font-size: 12pt;
	display: flex;
	align-items: center;
	justify-content: center;
}

.socials-cell i:hover{
    color: orange;
    transition: .3s ease-in-out !important;
}

h2{
    font-size: 12pt;
    font-family: "Space Grotesk", sans-serif;
    font-weight: 600;
    letter-spacing: 5px;
    text-align: center;
    color:#343636;
}

.about-body{
    margin-bottom: 100px;
}
.about-body p{
    font-size: 10pt;
    font-family: 'Poppins', sans-serif;
	color: #343636;
	font-weight: 400;
}

/* Small only */
@media screen and (max-width: 39.9375em) {
    .about-body{
        padding: 0px 50px;
    }
}

/* Medium and up */
@media screen and (min-width: 40em) {}

/* Medium only */
@media screen and (min-width: 40em) and (max-width: 63.9375em) {}

/* Large and up */
@media screen and (min-width: 64em) {}

/* Large only */
@media screen and (min-width: 64em) and (max-width: 74.9375em) {}