@charset "UTF-8";

body {
	--dot-bg: black;
	--dot-color: white;
	--dot-size: 1px;
	--dot-space: 20px;

	background: linear-gradient(
				90deg,
				var(--dot-bg) calc(var(--dot-space) - var(--dot-size)),
				transparent 1%
			)
			center / var(--dot-space) var(--dot-space),
		linear-gradient(
				var(--dot-bg) calc(var(--dot-space) - var(--dot-size)),
				transparent 1%
			)
			center / var(--dot-space) var(--dot-space),
		var(--dot-color);
}

html {
	cursor: none;
}

#circularcursor {
	background-color: red;
	width: 9px;
	height: 9px;
	border-radius: 50%;
	position: absolute;
	z-index: 9999;
	pointer-events: none;
	mix-blend-mode: difference;
}

@font-face {
	font-family: "bianzhidai_COLR-back";
	src: url("./../fonts/bianzhidai_COLR-back.otf");
}

@font-face {
	font-family: "SuisseIntlMono-Regular";
	src: url("./../fonts/SuisseIntlMono-Regular.otf");
}

html,
body {
	font-family: "bianzhidai_COLR-back", "SuisseIntlMono-Regular";
	min-height: 100vh;
}

p {
	color: rgb(0, 0, 0);
	font-family: "bianzhidai_COLR-back";
	font-size: 28px;
	letter-spacing: -3px;
	--dot-bg: rgb(255, 255, 255);
	--dot-color: rgb(0, 0, 0);
	--dot-size: 1px;
	--dot-space: 3px;
	background: linear-gradient(
				90deg,
				var(--dot-bg) calc(var(--dot-space) - var(--dot-size)),
				transparent 1%
			)
			center / var(--dot-space) var(--dot-space),
		linear-gradient(
				var(--dot-bg) calc(var(--dot-space) - var(--dot-size)),
				transparent 1%
			)
			center / var(--dot-space) var(--dot-space),
		var(--dot-color);
	border: 3px solid black;
	border-right: none;
	padding: 10px;
}

@media (max-width: 900px) {
	p {
		font-size: 16px;
		padding: 5px;
		letter-spacing: -2px;
	}
}

h1 {
	color: rgb(0, 0, 0);
	font-family: "bianzhidai_COLR-back";
	font-size: 28px;
	letter-spacing: -3px;
	background-color: rgb(255, 255, 255);
	border: 3px solid black;
	padding: 10px;
}

@media (max-width: 900px) {
	h1 {
		font-size: 16px;
		padding: 5px;
		letter-spacing: -2px;
	}
}

h2 {
	color: rgb(255, 255, 255);
	font-family: "bianzhidai_COLR-back";
	font-size: 89px;
	letter-spacing: -3px;
	text-align: center;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	opacity: 1;
}

h2:hover {
	color: rgb(255, 0, 0);
	filter: invert(100%);
}

@media (max-width: 900px) {
	h2 {
		font-family: "bianzhidai_COLR-back";
		font-size: 55px;
	}
}

h3 {
	color: rgb(0, 0, 0);
	font-size: 17px;
	font-family: "SuisseIntlMono-Regular";
	letter-spacing: 0px;
	background-color: rgb(255, 255, 255);
	border: 3px solid black;
	border-top: none;
	padding: 10px;
}

@media (max-width: 900px) {
	h3 {
		font-size: 12px;
	}
}

.title-container {
	width: 100%;
	height: 60px;
	display: flex;
	justify-content: stretch;
	--dot-bg: rgb(255, 255, 255);
	--dot-color: rgb(0, 0, 0);
	--dot-size: 1px;
	--dot-space: 3px;
	background: linear-gradient(
				90deg,
				var(--dot-bg) calc(var(--dot-space) - var(--dot-size)),
				transparent 1%
			)
			center / var(--dot-space) var(--dot-space),
		linear-gradient(
				var(--dot-bg) calc(var(--dot-space) - var(--dot-size)),
				transparent 1%
			)
			center / var(--dot-space) var(--dot-space),
		var(--dot-color);
}

@media (max-width: 900px) {
	.title-container {
		height: 30px;
	}
}

.title {
	flex-grow: 1;
	font: size 28px;
}

@media (max-width: 900px) {
	.title {
		font: size 17px;
		margin: 0;
	}
}

.close {
	border: 3px solid black;
	padding: 1rem;
	font-size: 28px;
	line-height: 1rem;
	display: flex;
	align-items: center;
}

@media (max-width: 900px) {
	.close {
		padding: 0.5rem;
		margin: 0;
	}
}

.close:hover {
	color: red;
}

.hidden {
	pointer-events: none;
	display: none;
}

.close {
	font-size: 28px;
	letter-spacing: -2px;
}

@media (max-width: 900px) {
	.close {
		font-size: 16px;
		padding: 5px;
		letter-spacing: -2px;
		line-height: 1rem;
	}
}

.container {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
}

.square {
	position: absolute;
	width: 100%;
	height: 40vh;
	background-color: rgb(255, 255, 255);
	border: 3px solid black;
	box-sizing: border-box;
	padding: 10px;
	filter: grayscale(100%);
	transition: opacity 0.1s ease;
}

@media (max-width: 900px) {
	.square {
		height: 20vh;
	}
}

.square:hover {
	filter: invert(100%);
}

::selection {
	color: rgb(255, 255, 255);
	background: rgb(0, 0, 0);
}

#square-1 {
	left: 1vw;
	top: 1vh;
	width: auto;
}

.hidden {
	opacity: 0;
}

@keyframes fadeIn {
	0% {
		opacity: 0;
		transform: scale(0);
	}
	100% {
		opacity: 1;
		transform: scale(1);
	}
}

.background-image {
	width: 100%;
	height: 82%;
	border: 3px solid black;
	border-top: none;
	background-position: center;
	box-sizing: border-box;
	background-image: url("/Users/romaoca/Desktop/ECAL/Semestre 2/Editorial Web/ADELE GOLDBERG/Tests//AG_Test_6/images/AG_portrait_1.jpg");
	background-size: cover;
}

#square-2 {
	left: 78vw;
	top: 55vh;
	width: calc(100% / 2);
	height: 400px;
	position: relative;
	overflow: hidden;
}

@media (max-width: 900px) {
	#square-2 {
		left: 45vw;
		top: 66vh;
		width: calc(100% / 2);
		height: 300px;
	}
}

.vertical-menu {
	width: 100%;
	height: 100%;
	overflow-y: auto;
}

.vertical-menu a {
	font-size: 17px;
	font-family: "SuisseIntlMono-Regular";
	color: black;
	background-color: white;
	display: block;
	padding: 3px;
	border-bottom: 3px solid black;
	box-sizing: border-box;
	text-decoration: none;
}

.vertical-menu a:hover {
	--dot-bg: rgb(255, 255, 255);
	--dot-color: rgb(0, 0, 0);
	--dot-size: 1px;
	--dot-space: 3px;
	background: linear-gradient(
				90deg,
				var(--dot-bg) calc(var(--dot-space) - var(--dot-size)),
				transparent 1%
			)
			center / var(--dot-space) var(--dot-space),
		linear-gradient(
				var(--dot-bg) calc(var(--dot-space) - var(--dot-size)),
				transparent 1%
			)
			center / var(--dot-space) var(--dot-space),
		var(--dot-color);
	filter: invert(100%);
}

@media (max-width: 900px) {
	.vertical-menu a {
		font-size: 12px;
	}
}

#menu-image {
	display: none;
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 80%;
	max-width: 800px;
	height: auto;
	max-height: 100%;
	z-index: 1000;
	pointer-events: none;
	filter: invert(100%) sepia(150%) hue-rotate(135deg) saturate(200%);
	mix-blend-mode: lighten;
}

#square-3 {
	left: 1vw;
	top: 88vh;
	width: calc(100% / 2.5);
	height: 9.3vh;
}

@media (max-width: 900px) {
	#square-3 {
		height: 6.3vh;
		top: 92vh;
	}
}

.audio-player {
	border: 3px solid black;
	border-right: none;
}

@media (max-width: 900px) {
	.audio-player {
		display: none;
	}
}

#square-4 {
	height: auto;
	width: calc(100% / 3);
	left: 65vw;
	top: 1vh;
	border: none;
	padding: 10px;
}

@media (max-width: 900px) {
	#square-4 {
		width: calc(100% / 1.9);
		left: 45vw;
		top: 3vh;
	}
}

#square-5 {
	height: auto;
	left: 52vw;
	top: 61vh;
	width: calc(100% / 4);
	height: 20vw;
	padding: 10px;
}

@media (max-width: 900px) {
	#square-5 {
		width: calc(100% / 2);
	}
}

.textarea {
	width: calc(100% - 10px);
	height: calc(81% - 10px);
	font-size: 17px;
	font-family: "SuisseIntlMono-Regular";
	letter-spacing: 0px;
	border-width: 3px;
	border-top: none;
	border-color: black;
	--dot-bg: rgb(255, 255, 255);
	--dot-color: rgb(0, 0, 0);
	--dot-size: 1px;
	--dot-space: 3px;
	background: linear-gradient(
				90deg,
				var(--dot-bg) calc(var(--dot-space) - var(--dot-size)),
				transparent 1%
			)
			center / var(--dot-space) var(--dot-space),
		linear-gradient(
				var(--dot-bg) calc(var(--dot-space) - var(--dot-size)),
				transparent 1%
			)
			center / var(--dot-space) var(--dot-space),
		var(--dot-color);
	resize: none;
}

.textarea::placeholder {
	color: rgb(0, 0, 0);
}

@media (max-width: 900px) {
	#square-5 {
		display: none;
	}
}

#square-6 {
}

.draw-square {
	left: 35vw;
	top: 1vh;
	height: 50%;
	width: 30%;
	padding: 10px;
	overflow: hidden;
	--dot-bg: black;
	--dot-color: white;
	--dot-size: 1px;
	--dot-space: 3px;
	background: linear-gradient(
				90deg,
				var(--dot-bg) calc(var(--dot-space) - var(--dot-size)),
				transparent 1%
			)
			center / var(--dot-space) var(--dot-space),
		linear-gradient(
				var(--dot-bg) calc(var(--dot-space) - var(--dot-size)),
				transparent 1%
			)
			center / var(--dot-space) var(--dot-space),
		var(--dot-color);
}

#draw-zone {
	display: grid;
	grid-template-columns: repeat(52, 1fr);
	grid-template-rows: repeat(52, calc(30vw / 52));
	width: 100%;
	height: 100%;
}

.black-pixel {
	background-color: rgb(255, 255, 255);
}

@media (max-width: 900px) {
	#square-6 {
		display: none;
	}
}

#square-7 {
	left: 2vw;
	top: 45vh;
	width: auto;
}

@media (max-width: 900px) {
	#square-7 {
		left: 2vw;
		top: 65vh;
	}
}

.background-image-2 {
	width: 100%;
	height: 82%;
	border: 3px solid black;
	border-top: none;
	background-position: center;
	box-sizing: border-box;
	background-image: url("/Users/romaoca/Desktop/ECAL/Semestre 2/Editorial Web/ADELE GOLDBERG/Tests/AG_Test_6/images/AG_portrait_2.jpg");
	background-size: cover;
}

#square-8 {
	left: 59vw;
	top: 29vh;
	width: auto;
}

@media (max-width: 900px) {
	#square-8 {
		left: 54vw;
		top: 50vh;
	}
}

.background-image-3 {
	width: 100%;
	height: 82%;
	border: 3px solid black;
	border-top: none;
	background-position: center;
	box-sizing: border-box;
	background-image: url("/Users/romaoca/Desktop/ECAL/Semestre 2/Editorial Web/ADELE GOLDBERG/Tests/AG_Test_6/images/AG_portrait_3.jpg");
	background-size: cover;
}

#square-9 {
	height: auto;
	width: calc(100% / 4);
	left: 5vw;
	top: 20vh;
	border: none;
	padding: 10px;
}
@media (max-width: 900px) {
	#square-9 {
		width: calc(100% / 2);
	}
}

#square-10 {
	height: auto;
	width: calc(100% / 4);
	left: 8vw;
	top: 28vh;
	border: none;
	padding: 10px;
}

@media (max-width: 900px) {
	#square-10 {
		width: calc(100% / 2);
	}
}

#square-11 {
	height: auto;
	width: calc(100% / 4);
	left: 13vw;
	top: 36vh;
	border: none;
	padding: 10px;
}
@media (max-width: 900px) {
	#square-11 {
		width: calc(100% / 2);
	}
}

#square-12 {
	height: auto;
	width: calc(100% / 4);
	left: 21vw;
	top: 44vh;
	border: none;
	padding: 10px;
}

@media (max-width: 900px) {
	#square-12 {
		width: calc(100% / 2);
	}
}

#square-13 {
	height: auto;
	width: calc(100% / 4);
	left: 24vw;
	top: 52vh;
	border: none;
	padding: 10px;
}
@media (max-width: 900px) {
	#square-13 {
		width: calc(100% / 2);
	}
}

#square-14 {
	height: auto;
	width: calc(100% / 4);
	left: 27vw;
	top: 60vh;
	border: none;
	padding: 10px;
}

@media (max-width: 900px) {
	#square-14 {
		width: calc(100% / 2);
	}
}
