body{
background: beige;
}

h1 {
  color: black;
  font-family: "Jersey 25", sans-serif;
  text-align: center;
  font-weight: 400;
  font-size: 50px;
}

h2{
font-family: "Electrolize", sans-serif;
color: #E00000;
text-align: center;
font-size: 50px;
}

p {
font-family: "Inder", sans-serif;
background-color: lightblue;
width: 700px;
padding: 20px;
margin: 30px;
border: solid #12AEBA;
}

footer {
background: #12AEBA;
font-family: "Electrolize", sans-serif;
text-align: center;
padding: 50px;
}

nav {
	background-color: #00838f;
  margin: auto;
  list-style: none;
  display: flex;
  justify-content: space-around;
  align-items: center;
  border-radius: 50px;
}

a {
font-family: "Electrolize", sans-serif;
font-size: 20px;
text-decoration: none;
text-shadow: 4px 4px 4px #000;
color: #fff;
letter-spacing: 2px;
transition: 400ms cubic-bezier(0.7, -0.6, 0.3, 1.2) text-shadow,
400ms cubic-bezier(0.7, -0.6, 0.3, 1.2) letter-spacing;
}

ol{
font-family: "Inder", sans-serif;
color: #E00000;
font-weight: bold;
text-align: center;
}

label {
font-family: "Inder", sans-serif;
}

#box{
width: 1500px;
border: 5px solid #12AEBA;
padding: 60px;
margin: 20px;
border-radius: 50px;
margin: auto;
background-color: lightgray;
}

#borderimg {
  border: 10px solid #12AEBA; 
}

#navigation {
display: flex;
flex-direction: row;
padding: 20px;
}

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

.clearfix a:hover {
  text-shadow: 1px 1px 1px #000;
  letter-spacing: 5px;
}

.clearfix::after{
	content: "";
  clear: both;
  display: table;
}

#hp  {
float: right;    
padding: 50px;
}

details{
  background-color: #303030;
  color: #fff;
  font-size: 1.5rem;
}

summary {
  font-family: "Electrolize", sans-serif;
  padding: .5em 1.3rem;
  list-style: none;
  display: flex;
  justify-content: space-between;  
  transition: height 1s ease;
}

summary::-webkit-details-marker {
  display: none;
}

summary:after{
  content: "\002B";
}

details[open] summary {
    border-bottom: 1px solid #aaa;
    margin-bottom: .5em;
}

details[open] summary:after{
  content: "\00D7";
}

details[open] div{
  padding: .5em 1em;
}

/* Style inputs with type="text", select elements and textareas */
input[type=text], select, textarea {
  width: 100%; /* Full width */
  padding: 12px; /* Some padding */ 
  border: 1px solid #ccc; /* Gray border */
  border-radius: 4px; /* Rounded borders */
  box-sizing: border-box; /* Make sure that padding and width stays in place */
  margin-top: 6px; /* Add a top margin */
  margin-bottom: 16px; /* Bottom margin */
  resize: vertical /* Allow the user to vertically resize the textarea (not horizontally) */
}

/* Style the submit button with a specific background color etc */
input[type=submit] {
  background-color: #038756;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

/* When moving the mouse over the submit button, add a darker green color */
input[type=submit]:hover {
  background-color: #39843C;
}

/* Add a background color and some padding around the form */
.container {
  border-radius: 5px;
  background-color: #757575;
  padding: 20px;
}

/*
	Media Queries
  
  Syntax
  @media type and (feature: value) {
  
  }

	types: all, screen, print, speech
  features: width, min-width, max-width, resolation, aspect-ratio, prefers-color-scheme
*/
@media (min-width: 768px) {
  .col-2 {
  	float: left;
    width: 45%;
    padding: 0.5em;
  }
}