/* Importing the fonts for the texts */
@import url('https://fonts.googleapis.com/css?family=Roboto&display=swap');
@import url('https://fonts.googleapis.com/css?family=Julius+Sans+One|Libre+Baskerville');

/* Background colour of the website */
html {
	background-color: #000e35;
	font-size: 100%;
	overflow: scroll;
}
/* The font for the Headers and sub-headings */
h1, 
h2,
footer{
  font-family: 'Julius Sans One', sans-serif;
  font-weight: bold;
  color: #fff;
} 

/* The style for the main text and body*/
section h1 {
  font-size: 200%;
  margin-left: 5px;
  padding: 10px;
  text-align: left
}

section h2 {

  margin-left: 5px;
  padding: 3px;
  text-align: left
}

section p, section ol, section ul {
	color: #fff;
	font-size: 100%;
	margin-left: 10px;
	padding: 3px;
	font-family: 'Roboto', sans-serif;
	color: #FFFFFF;
}

section ol, section ul{
	margin-left: 20px;
	padding: 10px;
}

/* Re-sizing images based on screen size. */ 
img {
    height: auto;
    border-radius: 10px;
	max-width: 100%;
    overflow: auto;
    float: none;
    border-radius: 15px;
}

.right {
	float: right;
	height: auto;
    border-radius: 10px;
	max-width: 100%;
    overflow: auto;
	border-radius: 15px;
	padding: 5px;
}


#Rem {
    height: auto;
    border-radius: 10px;
	max-width: 50%;
    overflow: auto;
    float: right;
    border-radius: 15px;
	padding: 5px;
}

#Mau {
    height: auto;
    border-radius: 10px;
	max-width: 35%;
    overflow: auto;
    float: right;
    border-radius: 15px;
	padding: 5px;
}

/* White border surrounding content */
section {
    background-color: rgba(255, 255, 255, 0.5);
    padding: 20px;
    border-radius: 10px;
	position: static;
}

div {
	display: block;
}

/* Styling for the footer */

footer {
	position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  text-align: right;
  font-size: 18px;
  background-image: linear-gradient(260deg, #1438C7  0%, #E1DA0B  100%);
  border: 1px solid rgba(0, 0, 0, 0.2);
  padding-bottom: 10px;
  padding-top: 10px;
  padding-right: 5px; 

}


/* Re-resizing the container based on screen size */
.container {
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

@media only screen and (min-width: 1200px) {
	.container {
		width: 1170px;
		}
}

