/* ------------------------------------------------------- COMMON */

@font-face {
	font-family: 'TuskerMediumCondensed';
	src: url('/fonts/TuskerGrotesk-4500Medium.ttf');
}
@font-face {
	font-family: 'TuskerBoldCondensed';
	src: url('/fonts/TuskerGrotesk-4700Bold.ttf');
}
@font-face {
	font-family: 'TuskerSemiBoldCondensed';
	src: url('/fonts/TuskerGrotesk-7600Semibold.ttf');
}

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	box-sizing: border-box;
}
:root{
	--red: #fa4c4d;
	--black: #000000;
	--white: #fff;
	--gray: #3b3b3b;
}
body{
	background-color: var(--black);
	color: var(--white);
	overflow-y: auto;
	width: 100vw;
}
header{
	width: 90%;
	display: flex;
	height: 100px;
	justify-content: center;
	align-items: center;
	margin: auto;
	.logo{
		width: 15%;
	}
}
nav{
	width: 70%;
	margin-left: auto;
}

.nav-menu{
	display: flex;
	list-style: none;
	justify-content: space-around;
	a{
		font-family: 'TuskerSemiBoldCondensed';
		color: var(--white);
		text-decoration: none;
	};
	a:hover{
		text-decoration: underline;
	}
}
main{
	font-family: 'TuskerMediumCondensed';
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}
.title-section{
	width: 90%;
	font-size: clamp(1rem, -2.571rem + 9.524vw, 6rem);
		margin-right: auto;
	margin-left: 10%;
	display: flex;
	margin-top: 2vh;
	h1{
		display: flex;
		flex-direction: column;
		gap: 10px;
		margin-right: 25px;
	}
	span{
		font-family: 'TuskerBoldCondensed';
		font-size: clamp(3rem, -0.571rem + 9.524vw, 8rem);
		margin-top: -8%;
		color: var(--red);
		white-space: nowrap;
	}
	span:nth-child(1){
		margin-top: -7%;
	}
}
.arrow{
	width: 100px;
    height: 100px;
    background: var(--white);
	margin-top: auto;
	margin-bottom: 1.6%;
	margin-right: -30px;
    clip-path: polygon(35% 0%,70% 50%,35% 100%,0% 100%,35% 50%,0% 0%);
}
.subtitle-section{
	width: 90%;
	margin-left: 10%;
	h2{
		font-size: 1.5rem;

	}
}
.tweet-section{
	width: 80%;
	display: flex;
	justify-content: center;
}
.twitter-tweet{
	width: 100%;
	display: flex;
	justify-content: center;
}
#twitter-widget-0{
	display: flex !important;
	justify-content: center;
}