@charset "utf-8";

/*
   Brianna Deirth-Portfolio
   CSS file (Stylesheet) for Projects page
   
   Author: Brianna Deirth
   Date: 03/24/2024  
   Filename: projectspage.css

*/

body {
	display: flex;
    flex-direction: column;
    justify-content: center;
   	width: 100%;
    min-height: 100vh;
    margin: 0;
    padding: 0;
	padding-bottom: 100px;
    font-family: Arial, sans-serif;
	background-color: gray;
	background-image: url("satin.jpg");
    background-repeat: repeat;
    background-size: cover;
    background-position: center;
}

nav ul {
    list-style-type: none;
    text-align: right;
    padding: 20px 0;
    position: absolute;
    top: 0;
    right: 0;
    padding: 10px;
}

nav ul li {
    display: inline;
    margin-left: 20px;
}

nav ul li a {
    text-decoration: none;
    color: #000000;
}

.logo {
    position: absolute;
    top: 10px;
    left: 10px;
    font-family: 'adelia', cursive;
    font-size: 20px;
}

#projects-heading {
    font-family: 'adelia', cursive;
	font-size: 45px;
    position: relative;
	width: 100%;
	text-align: center;
    left: 50%;
    transform: translateX(-50%);
}

@font-face {
	font-family: 'adelia';
	src: url('adelia.ttf') format('truetype');
}

@font-face {
	font-family: 'BONITA';
	src: url('BONITA.ttf') format('truetype');
}

.projects-card {
    width: 30%;
    max-width: 1200px;
    margin: 50px auto;
    padding: 20px;
    background-color: #FCE8E3;
    text-align: center;
	font-family: ILoveGlitter-TTF, sans-serif;
    border-radius: 10px;
	display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
	overflow: auto;
	height: 500px;
}

.projects-card ul li {
    margin-bottom: 40px;
	font-size: 20px;
}

.projects-card ul li a:link {
    color: #000000;
}

.projects-card ul li a:visited {
    color: #000000;
}

.projects-card ul li a:hover {
    color: #000000;
}

.projects-card ul li a:active {
    color: #000000;
}

.social-media {
    display: flex;
    justify-content: center;
    gap: 10em;
    margin-top: 20px;
}

.social-media {
    position: fixed;
    bottom: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 10px 0;
    background-color: transparent;
}

.social-media img {
    width: 6em;
    height: 6em;
}