@charset "UTF-8";
/* CSS Document */

body {
	margin: 0;
	background: lightgray;
	font-family: "IBM Plex Sans", sans-serif;
	color: #322759;
	
}

#container {
	width: 80%;
	margin: 0 auto;
	min-width: 780px;
	max-width: 1280px;
}


header {
  background: url("images/bg1.jpg") no-repeat center center;
  background-size: cover;
  color: #F26D6D;
  height: 200px;
  text-align: center;
  padding-top: 30px;
  box-sizing: border-box;
}

header h1 {
	margin: 0;
	font-size: 94px;
	font-family: "Bricolage Grotesque", sans-serif;
}

header h2 {
	 font-family: "Public Sans", sans-serif;
  font-weight: 700;
	font-size: 22px;
	margin: 0;
	
}

h2, h3, h4 {
  font-family: "Public Sans", sans-serif;
  font-weight: 700;
}

nav {
  background: white;
  border-bottom: 1px solid rgba(242, 109, 109, 0.4);
}

nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 60px;
}

nav li {
  display: block;
}

nav a {
  text-decoration: none;
  font-family: "Public Sans", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 14px;
  color: #322759;
  padding: 20px 0;
  display: inline-block;
  position: relative;
}

nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 10px;
  width: 0;
  height: 2px;
  background: #F26D6D;
  transition: width 0.3s ease;
}

nav a:hover::after {
  width: 100%;
}


section {
	padding: 50px;
	background: white;
	
}

footer {
  background: url("images/bg1.jpg") no-repeat center center;
  background-size: cover;
  padding: 25px;
  text-align: center;
  font-size: 12px;
  color: white;
  clear: both;
	
}

.clear {
	clear: both;
}

/*COLOR PAGE*/

.colors {
	display: flex;
	gap: 20px;
	margin: 40px 0 80px 0;
	align-items: flex-end;
}

.colors div {
	flex: 1;
	height: 160px;
	display: flex;
	align-items: flex-end;
	justify-content: center;
	padding-bottom: 15px;
	font-weight: 600;
	border-radius: 40px;
transition: transform 0.3s ease;
}

.colors div:hover {
  transform: translateY(-10px);
}

.c1 {
	background: #A65369;
	color: #F4EDE7;
}

.c2 {
	background: #322759;
	color: #F4EDE7;
}

.c3 {
	background: #117CD9;
	color: #F4EDE7;
}

.c4 {
	background: #73BFA3;
}

.c5 {
	background: #F26D6D;
}

.b-c1 {
	background: #040305;
	color: #F4EDE7;
}

.b-c2 {
	background: #55318C;
	color: #F4EDE7;
}

.b-c3 {
	background: #78249A;
	color: #F4EDE7;
}

.b-c4 {
	background: #422B57;
	color: #F4EDE7;
}

.b-c5 {
	background: #F4EDE7;
}


/*TYPE PAGE*/

.type {
  margin-bottom: 80px;
}


.o1-header {
  font-family: "Archivo Black", sans-serif;
  font-size: 64px;
  margin-bottom: 10px;
}

.o1-subheader {
  font-family: "Oswald", sans-serif;
  font-size: 28px;
  margin-top: 0;
  margin-bottom: 20px;
}

.o1-body {
  font-family: "Work Sans", sans-serif;
  line-height: 1.6;
}


.o2-header {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 64px;
  margin-bottom: 10px;
}

.o2-subheader {
  font-family: "Public Sans", sans-serif;
  font-weight: 700;
  font-size: 28px;
  margin-top: 0;
  margin-bottom: 20px;
}

.o2-body {
  font-family: "IBM Plex Sans", sans-serif;
  line-height: 1.6;
}

.type h5 {
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 14px;
}

.type h1 {
	margin-top: 0;
}

section h3 {
	
	margin-bottom: 50px;	
	margin-top: 0;
	text-transform: uppercase;
}

/*IMAGES PAGE*/

.images img {
	display: block;
	width: 80%;
	margin: 60px auto;
	border-radius: 30px;
}
