/*
************************************************************
File		: style.css
Author		: LisaPaige (dev@lisapaige.com)
************************************************************
*/

:root {
	--white: #ffffff;
	--purple: #cb9fdd;
	--lightpurple: #ecd2f9;
	--pink: #ff6691;
	--black: #151515;
	--blue: #0e99d8;
	--lightblue: #6ae3ef;
	--brightblue: #baf9ff;
	--lightgray: #d3d3d3;
	--darkgray: #767676;
}

html {
	height: 100%;
    width: 100%;
    font-size: 16px;
    cursor: url("../images/cursors/cursor.png"), auto;
}

body {
	display: flex;
	flex-direction: column;
	align-items: center;
	height: 100%;
	min-height: 100%;
	width: 100%;
    background-color: var(--blue);
}

h1 {
	font-family: 'header';
	font-size: 2.75rem;
	color: #151515;
}

h2 {
	font-family: 'header';
	font-size: 2.5rem;
	color: #151515;
}

#column-content {
	display: flex;
	flex-direction: column;
	align-items: center;
	max-width: 440px;
}

#top-title {
	text-align: center;
	width: 100%;
	margin-bottom: 2rem;
	padding: 1rem 1rem 0;
}

#top-image {
	width: 70%;
	margin-bottom: 2rem;
}

#top-image img {
	width: 100%;
}

#email {
	font-family: 'body';
	font-size: 2rem;
	margin-bottom: 1.25rem;
}

#email a:link,
#email a:visited,
#email a:hover,
#email a:active {
	color: var(--black);
	text-decoration: none;
}

.link-button {
	display: inline-block;
	position: relative;
	width: 100%;
	padding: 0 1rem;
}

.link-button:not(:last-child) {
	margin-bottom: 1.25rem;
}

.link-button img {
	display: block;
	width: 100%;
}

.link-button a:link,
.link-button a:visited,
.link-button a:hover,
.link-button a:active {
	color: var(--black);
	text-decoration: none;
}

#twitch img:hover {
	filter: saturate(1.75) brightness(0.9) hue-rotate(-5deg);
}

#twitch .link-text:hover ~ a {
	filter: saturate(1.75) brightness(0.9) hue-rotate(-5deg);
}

#youtube img:hover {
	filter: brightness(1.25) hue-rotate(10deg);
}

#youtube .link-text:hover ~ a {
	filter: brightness(1.25) hue-rotate(10deg);
}

#discord img:hover {
	filter: brightness(0.75);
}

#discord .link-text:hover ~ a {
	filter: brightness(0.75);
}

#bluesky img:hover {
	filter: saturate(2) brightness(0.8) hue-rotate(10deg);
}

#bluesky .link-text:hover ~ a {
	filter: saturate(2) brightness(0.8) hue-rotate(10deg);
}

#twitter img:hover {
	filter: brightness(0.7);
}

#twitter .link-text:hover ~ a {
	filter: brightness(0.7);
}

#instagram img:hover {
	filter: brightness(0.85);
}

#instagram .link-text:hover ~ a {
	filter: brightness(0.85);
}

#throne img:hover {
	filter: saturate(3) brightness(0.8) hue-rotate(-5deg);
}

#throne .link-text:hover ~ a {
	filter: saturate(3) brightness(0.8) hue-rotate(-8deg);
}

#kofi img:hover {
	filter: brightness(0.85) saturate(1.75);
}

#fourthwall img:hover {
	filter: brightness(1.15) hue-rotate(10deg);
}

#fourthwall .link-text:hover ~ a {
	filter: brightness(1.15) hue-rotate(10deg);
}

#kofi .link-text:hover ~ a {
	filter: brightness(0.85) saturate(1.75);
}

#streamelements img:hover {
	filter: saturate(2) brightness(0.8) hue-rotate(10deg);
}

#streamelements .link-text:hover ~ a {
	filter: saturate(2) brightness(0.8) hue-rotate(10deg);
}

.link-button a,
#email a {
	cursor: url("../images/cursors/cursorpointer.png") 7 0, pointer;
}

.link-text {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	text-align: center;
	font-family: 'body';
	font-size: 2.25rem;
	color: #151515;
	z-index: 2;
}

footer {
	font-family: 'header';
	font-size: 2rem;
	color: #151515;
	text-align: center;
	width: 100%;
	padding: 2rem 1rem 1rem;
}

@media only screen and (min-width: 481px) {

	h1 {
		font-size: 3.5rem;
	}

	h2 {
		font-size: 3.25rem;
	}

}

@media only screen and (min-width: 441px) and (max-width: 480px) {

	h1 {
		font-size: 3rem;
	}

	h2 {
		font-size: 2.75rem;
	}

}

@media only screen and (min-width: 401px) and (max-width: 440px) {

	#email {
		font-size: 1.75rem;
	}

	.link-text {
		font-size: 2rem;
	}

}

@media only screen and (min-width: 361px) and (max-width: 400px) {

	#email {
		font-size: 1.5rem;
	}

	.link-text {
		font-size: 1.875rem;
	}

}

@media only screen and (min-width: 331px) and (max-width: 360px) {

	#top-title {
		margin-bottom: 1.25rem;
	}

	#top-image {
		width: 80%;
		margin-bottom: 1.5rem;
	}

	#email {
		font-size: 1.5rem;
	}

	.link-button:not(:last-child) {
		margin-bottom: 1rem;
	}

	.link-text {
		font-size: 1.75rem;
	}

	footer {
		font-size: 1.75rem;
		padding: 1.5rem 1rem 1rem;
	}

}

@media only screen and (min-width: 301px) and (max-width: 330px) {

	#top-title {
		margin-bottom: 1.25rem;
	}

	#top-image {
		width: 80%;
		margin-bottom: 1.5rem;
	}

	#email {
		font-size: 1.25rem;
	}

	.link-button:not(:last-child) {
		margin-bottom: 1rem;
	}

	.link-text {
		font-size: 1.5rem;
	}

	footer {
		font-size: 1.75rem;
		padding: 1.5rem 1rem 1rem;
	}

}

@media only screen and (max-width: 300px) {

	#top-title {
		margin-bottom: 1.25rem;
	}

	#top-image {
		width: 80%;
		margin-bottom: 1.5rem;
	}

	#email {
		font-size: 1.25rem;
	}

	.link-button:not(:last-child) {
		margin-bottom: 1rem;
	}

	.link-text {
		font-size: 1.375rem;
	}

	footer {
		font-size: 1.75rem;
		padding: 1.5rem 1rem 1rem;
	}

}