@charset "utf-8";

/*
   Brianna Deirth-Portfolio
   CSS file (Stylesheet) for index page
   
   Author: Brianna Deirth
   Date: 03/20/2024  
   Filename: index.css

*/

body {
	position: relative;
	display: flex;
    flex-direction: column;
    justify-content: center;
   	width: 100%;
    min-height: 100vh;
    margin: 0;
    padding: 0;
    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;
}

@font-face {
	font-family: 'adelia';
	src: url('adelia.ttf') format('truetype');
}

@font-face {
	font-family: 'BONITA';
	src: url('BONITA.ttf') format('truetype');
}

.intro-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;
	
}

.intro-card h1 {
	font-family: adelia, sans-serif;
	font-size: 3em;
	margin-bottom: 0.25em;
}

.intro-card p {
    font-family: Arial, Helvetica, sans-serif;
	font-size: 2em;
	margin: 0.25em 0;
}

.intro-card h2 {
    font-family: BONITA, sans-serif;
	font-size: 5em;
	margin-top: 0.25em;
}

.social-media {
	position: fixed;
	bottom: 0;
    display: flex;
    justify-content: center;
    gap: 10em;
    margin-top: 20px;
}


.social-media {
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 10em;
    margin-top: 20px;
    padding: 10px 0;
    background-color: transparent;
}

.social-media img {
    width: 6em;
    height: 6em;
}