* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	font-size: 62.5%;
}

:root {
	--1-color: #6d83f2;
	--2-color: #5a7de6;
	--3-color: #f8f8f8;
	--4-color: #f8f8f8ae;
	--5-color: #303030;
	--6-color: #232323;
	--7-color: #191919;
	--p-font: 'Montserrat', sans-serif;
	--s-font: 'Comfortaa', cursive;
	--fs-title: 5.5rem;
	--fs-subtitle: 3rem;
	--fs-paragraph: 2rem;
}

/* Header */

.header {
	width: 100vw;
	height: 5vh;
	display: flex;
	align-items: center;
	justify-content: space-evenly;
	background-color: var(--7-color);
}

.navegation {
	width: 300px;
}

.menu {
	display: flex;
	justify-content: space-between;
}

.menu-item {
	list-style: none;
}

.menu-item a {
	text-decoration: none;
	color: var(--3-color);
	font-size: 1.6rem;
	font-family: var(--p-font);
	border-bottom: 1px dotted var(--3-color);
}

.menu-item a:hover {
	border-bottom: 1px dotted var(--4-color);
	color: #f8f8f8ae;
}

.contacts {
	width: 200px;
	margin: var(--fs-paragraph) 0;
	display: flex;
	justify-content: space-between;
}

.contacts i {
	font-size: var(--fs-paragraph);
	color: var(--3-color);
}

.contacts i:hover {
	color: #f8f8f8ae;
}

/* Main */

.main {
	width: 100vw;
	height: 95vh;
	background-color: var(--7-color);
	display: flex;
	justify-content: center;
	align-items: center;
	color: var(--3-color);
	font-family: var(--p-font);
}

.container {
	width: 500px;
	height: 500px;
}

.left {
	display: flex;
	flex-direction: column;
	align-content: center;
	justify-content: center;
}

.greeting {
	font-size: var(--fs-paragraph);
	font-family: var(--s-font);
	font-weight: 400;
}

.title {
	font-size: var(--fs-title);
	font-weight: 800;
}

.subtitle {
	font-size: var(--fs-subtitle);
	font-family: var(--s-font);
	font-weight: 500;
	color: #f8f8f8ae;
}

.container-buttons {
	margin-top: 35px;
	display: flex;
	justify-content: flex-start;
	align-items: center;
}

.buttons {
	display: flex;
	width: 370px;
	justify-content: space-between;
}

.button {
	padding: 1rem 5rem;
	border-radius: 7px;
	border: 0.8px solid var(--4-color);
	background-color: var(--7-color);
	color: var(--3-color);
	font-size: var(--fs-paragraph);
}

.button:hover {
	cursor: pointer;
	border: 1px solid var(--7-color);
	background-color: var(--3-color);
	color: var(--7-color);
}

.right {
	background-image: url(https://i.postimg.cc/mgP4BMSz/iso-box.png);
	background-position: left;
	background-repeat: no-repeat;
	background-size: cover;
}
