@charset "UTF-8";

/* CSS was validated using https://jigsaw.w3.org/css-validator/#validate_by_input  */
/* Looked at https://www.w3schools.com/css/css3_mediaqueries_ex.asp for media rules */

/* General rules: */
body {
	background-image: url(static/Sunset.jpeg);
	background-size:cover;
	background-repeat: no-repeat;
	background-attachment: fixed;
	background-position: center;
	margin:0px;
	padding:0px;
}

.h1border{
	border-style: solid;
	border-width: 3px;
	border-color: #0E34A0;
	border-radius: 15px;
	background-color:rgba(255, 255, 255, .9);
	margin:40px 10px;
	border-radius: 40px;
	
}

.h2border{
	border-style: solid;
	border-width: 3px;
	border-color: #0E34A0;
	border-radius: 40px;
	background-color: rgba(255, 255, 255, .9);
	margin:40px 10px;
	padding:20px;
	opacity: 1;
}

h1 {
	text-align:center;
	color:#0E34A0;
	font-size: 3em;
}

h2{
	text-align:center;
	color:#0E34A0;
	text-decoration-line: underline;
	font-size: 2.5em;
}

h3{
	font-size:1.5em;
}

h4{
	font-size:1.5em;
}

.companytitle{
	height:100px;
}


.welcome{
	text-align:center;
	height:100vh;
	vertical-align: middle;
	font-size:5.5vw;
	opacity:1;
	display: flex;
  	justify-content: center;
  	align-items: center;
}

.welcome h1{
	vertical-align: middle;
}

#companieswebsites .floatleft {
	margin: .5%;
}


.floatleft{
	float:left;
	overflow:auto;
	width: 32.3%;
}

.overflowauto{
	overflow:auto;
}

.floatleft h3{
	text-align:center;
	font-size:4vw;
}

.companylogo{
	width:100%;
}

.companylogodiv{
	height:500px;
	display: flex;
	align-items: center;
	justify-content:center;
}

.halfpicture{
	width:50%;
}

.halftext{
	margin-left:51%;
}

.h2border ol{ /* Ordered list is bullets */
	list-style-type:circle;
}

p{
	color:#0F0A0A;
	font-size:1.4em;
}

img{
	border-radius:15px;
}

.hello p{
	text-align:center;
}

a{
	color:#63ADF2;
	text-decoration:none;
}

a:hover{
	color:#1333f4;
}

.coursetitle{
	margin-top:100px;
}

.contentcenter{
	width:100%;
	max-width:1000px;
	margin: auto;
}

.normpic{
	width: 100%; 
	max-width:500px;
	display:block;
	margin:auto;
}




/* Navigation Bar */

.navbar {
  overflow: hidden;
  background-color: #333;
  position: fixed;
  top: 0;
  width: 100%; 
  display: flex;
  justify-content: center;
  align-items: center;
}

.navbar a {
  float: left;
  font-size: 1em;
  color: white;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

.dropdown {
  float: left;
  overflow: hidden;
}

.dropdown .dropbtn {
  font-size: 1em;  
  border: none;
  color: white;
  padding: 14px 16px;
  background-color: inherit;
  font-family: inherit;
  margin: 0;
}

.navbar a:hover, .dropdown:hover .dropbtn {
  background-color: #0E34A0;
}

.dropdown-content {
  display: none;
  position: fixed;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

.dropdown-content a {
  float: none;
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}

.dropdown-content a:hover {
  background-color: #ddd;
}

.dropdown:hover .dropdown-content {
  display: block;
}

/* Carousel css was here but was removed for optimization */


@media (max-width:760px) { /* used to be 660px */

	.floatleft{
		float:none; 
		width:100%;
	}
	
	h3{
		font-size:3em !important;
	}
	
	.halftext{
		margin-left:0%;
	}
	
}