/* CSS Document */
/* julianne aguilar
sweet nothings
juliannes.website
2024 */

html, body {
	min-height: 100%;
}

body {
	margin: 0;
	padding: 0;
	max-width: 100%;
	font-family: serif;
	background: #058080;
	font-style: italic;
}

a {
	color: white;
	text-decoration: none;
}

a:link a:visited a:hover a:active {
	color: white;
	text-decoration: none;
}

#container {
	position: absolute;
	height: auto;
	width: 100vw;
	max-width: 100%;
	overflow: auto;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
}

#container>div {
	margin: 50px;
}

.title {
	text-shadow: 5px 5px rgba(0,0,0,0.5);
	font-size: 5vw;
	color: white;
}

img {
	width: 40vw;
	height: auto;
	box-shadow: 20px 20px rgba(0,0,0,0.5);
}

.link {
	text-shadow: 5px 5px rgba(0,0,0,0.5);
	font-size: 3vw;
	color: white;
}

@media only screen and (max-width: 767px) {
	img {
		width: 70vw;
	}
	
	.title {
		font-size: 8vw;
	}
	
	.link {
		font-size: 5vw;
	}
}