@charset "UTF-8";
/*

typographica media red #C92D41
typographica media dark #1D374A
typographica media grey #A2B1BD

typographica manuscript red #B20D21
typographica manuscript dark #1A1B38
typographica manuscript

*/
body {
    background-color: #FFFFFF;
}

h1 {
	font-family: myriad-pro, sans-serif;
	font-weight: 400;
	font-style: normal;
	font-size: 1rem;
	color: #A2B1BD;
	text-align: left;
	padding-top: 220px;
	letter-spacing: 1px;
}
h2 {
	font-family: le-monde-livre-classic-byol, serif;
	font-weight: 100;
	font-size: 1rem;
	font-style: normal;
	color: #A2B1BD;
	text-align: left;
	padding-top: 220px;

}
p {
	font-family: myriad-pro, sans-serif;
	font-weight: 400;
	font-style: normal;
}
a {
	text-decoration: none
}

body {
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 100vh;
	margin: 0;
}

.cont-all {
	margin: 10px;
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 100vh;
	position: absolute;
}

/* div for typo manu */
.cont-manuscript {
    width: 300px;
    height: 200px;
    background-image: url(../images/logo-typographicamanuscript-colour_2.svg);
	background-repeat: no-repeat;
    position: relative;
    cursor: pointer;
    margin-left: 5rem;
    margin-right: 5rem;
}
.manuscript-tooltip-text {
	--tooltip-color: #1A1B38;
	position: absolute;
	left: 50%;
	top: 0;
	transform: translateX(-50%);
	background-color: var(--tooltip-color);
	color: white;
	white-space: nowrap;
	padding: .5rem 1rem;
	border-radius: .2rem;
	font-family: Gotham, "Helvetica Neue", Helvetica, Arial, "sans-serif";
	visibility: hidden;
	opacity: 0;
	transition: opacity 50ms ease;
}
 
.manuscript-tooltip-text::before {
	content: '';
	position: absolute;
	left: 50%;
	top: 100%;
	transform: translateX(-50%);
	border: .7rem solid;
	border-top-color: var(--tooltip-color);

}

.cont-manuscript:hover .manuscript-tooltip-text {
	top: -30%;
	visibility: visible;
	opacity: 1;
	transition-delay: 50ms;
}

/* div for typo media */

.cont-media {
    width: 500px;
    height: 90px;
    background-image: url(../images/logo-typographicamedia-colour.svg);
    position: relative;
    cursor: pointer;
    margin-left: 5rem;
    margin-right: 5rem;
    margin-top: 50px;
    background-repeat: no-repeat;
}
.media-tooltip-text {
	--tooltip-color: #1A1B38;
	position: absolute;
	left: 50%;
	top: 0;
	transform: translateX(-50%);
	background-color: var(--tooltip-color);
	color: white;
	white-space: nowrap;
	padding: .5rem 1rem;
	border-radius: .2rem;
	font-family: Gotham, "Helvetica Neue", Helvetica, Arial, "sans-serif";
	visibility: hidden;
	opacity: 0;
	transition: opacity 50ms ease;
}
 
.media-tooltip-text::before {
	content: '';
	position: absolute;
	left: 50%;
	top: 100%;
	transform: translateX(-50%);
	border: .7rem solid;
	border-top-color: var(--tooltip-color);

}

.cont-media:hover .media-tooltip-text {
	top: -90%;
	visibility: visible;
	opacity: 1;
	transition-delay: 50ms;
}

@media all and (max-width: 1025px) {
	.cont-manscript {
    	margin-left: 2rem;
    	margin-right: 2rem;
	}
	.cont-media {
    	margin-left: 2rem;
    	margin-right: 2rem;
	}
}

@media all and (max-width: 950px) {
	.cont-all {
		flex-direction: column;
	}
	.cont-manuscript {
		margin-top: 50px;
	}
	.cont-media {
		margin-top: 150px;
	}
}

@media all and (max-width: 550px) {
	.cont-manuscript {
		width: 250px;
    	height: 150px;
    	margin-top: 90px;
	}
	.cont-media {
		width: 350px;
    	height: 50px;
    	margin-top: 90px;
	}
}
