
/*colors and Fonts*/

body {
	background-color: #90c5ed;
	color: rgb(50,50,50);
	font-family: "Inter var", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, sans-serif;
	font-size: 18px;
	line-height: 1.6;
	letter-spacing: 1;
}
h1 {
	color: black;
	font-size: 60px;
	text-transform: uppercase;
	font-weight: 900;
}

h2 {
	color: black;
	background-color: #cdf4f4;
	font-size: 24px;
	font-weight:bold;

}

a {
	text-decoration: none;
	color:#c92a55;
}

a:hover {
    text-decoration: underline;
}

.crumb {
    display:inline;
	color: #000000;
	padding: 15px 20px;
	border-radius: 4px;
}



/* Custom Design with Class*/

.container {
	width: 1200px;
	margin: 40px auto;
}
@media (max-width: 1280px) {
  /* For a screen < 960px, this CSS will be read */
  .container {
    width: 800px;
  }
}
@media (max-width: 900px) {
  /* For a screen < 720px, this CSS will be read */
  .container {
    width: 680px;
  }
}
@media (max-width: 700px) {
  /* For a screen < 540px, this CSS will be read */
  .container {
    width: 500px;
  }
}
@media (max-width: 580px) {
  /* For a screen < 540px, this CSS will be read */
  .container {
    width: 300px;
  }
}

.card-white {
	background-color: #FFFFFF;
	padding-bottom: 5px;
	box-shadow: 0px 10px 30px rgba(0,0,0,0.1);
	border-radius: 4px;
	margin: 20px 0px;
	text-align: center;
}

.img-circle {
	border-radius: 50%;
}

.btn-red {
	background-color: green;
	color: #FFFFFF;
	padding: 15px 20px;
	border-radius: 4px;
}

.btn-red:hover {
	background-color: lightgreen;
	color: white;
}

.list-inline {
	list-style:none;
	padding-left: 0px;
}

.list-inline li {
	display:inline;
	padding: 10px;
}

.list-inline i {
	font-size: 50px;
	text-decoration: none;
	color:#c92a55;
}

.list-inline i:hover {
	text-decoration: bold;
	color: #c92a7d;
}


/* 1% with id */

#introduction {
	padding-bottom: 35px; 
}
#introduction p{
	margin-bottom: 40px;
}


