:root {
	--text-color:#313537;
	--heading-color:;
	--link-color:;
	--background-color: #98DCD1;

	--heading-font:'Delius Swash Caps', 'Times New Roman', serif;
	--body-font:'Delius Swash Caps', 'Times New Roman', serif;
}


html {
	background-color: var(--background-color);

	font-family: var(--body-font);
	font-size: 17px;
	color: var(--text-color);
}

img {
	border-radius: 4px;
}
body {
	display: grid;
}

p, h1, h2, h3, h4, h5, h6 {
	overflow-x: auto;
}

header {
	margin-inline: auto;
	max-width: 60ch;
	text-align: center;
}

header nav {
  font-size: 1rem;
  line-height: 2;
  padding: 1rem 0 0 0;
}

/* Use flexbox to allow items to wrap, as needed */
header nav ul,
header nav ol {
  align-content: space-around;
  align-items: center;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  list-style-type: none;
  margin: 0;
  padding: 0;
}

/* List items are inline elements, make them behave more like blocks */
header nav ul li,
header nav ol li {
  display: inline-block;
}

header nav a,
header nav a:visited {
  margin: 0 0.5rem 1rem 0.5rem;
  border: var(--border-width) solid var(--border);
  border-radius: var(--standard-border-radius);
  color: var(--text);
  display: inline-block;
  padding: 0.1rem 1rem;
  text-decoration: none;
}

header nav a:hover,
header nav a.current,
header nav a[aria-current="page"],
header nav a[aria-current="true"] {
  background: var(--bg);
  border-color: var(--accent);
  color: var(--accent);
  cursor: pointer;
}

/* Reduce nav side on mobile */
@media only screen and (max-width: 720px) {
  header nav a {
    border: none;
    padding: 0;
    text-decoration: underline;
    line-height: 1;
  }

  header nav a.current {
    background: none;
  }
}

/* Consolidate box styling */
aside, details, pre, progress {
  background-color: var(--accent-bg);
  border: var(--border-width) solid var(--border);
  border-radius: var(--standard-border-radius);
  margin-bottom: 1rem;
}

aside {
  font-size: 1rem;
  width: 30%;
  padding: 0 15px;
  margin-inline-start: 15px;
  float: right;
}
*[dir="rtl"] aside {
  float: left;
}

/* Make aside full-width on mobile */
@media only screen and (max-width: 720px) {
  aside {
    width: 100%;
    float: none;
    margin-inline-start: 0;
  }
}

main {
	padding: 1rem;
	background-color: #E7F3F7;
	border-radius: 5px;
	margin-inline: auto;
	max-width: 60ch;
}

.main1 {
	margin-right: 10px;
	align-items: flex-end;
}

.main2 {
	margin-inline: auto;
	max-width: 20ch;
	max-height: 26ch;
	overflow-x: auto;
}

.main3 {
	margin-inline:auto;
	margin-top: 10px;
	max-width: 20ch;
	max-height: 22ch;
	overflow-x: auto;
}
.container {
	display: flex;
	margin-inline: auto;

}

}
footer {
	margin-inline: auto;
	max-width: 60ch;
	font-size: 0.75rem;
}