@charset "utf-8";
/* CSS Document */


* {
  box-sizing: border-box;
}

body {
	font-family: Garamond, 'Times New Roman', Times, serif;
	padding: 0px;
	margin: 0;
}

.vertical-wrapper {
  display: flex;
  flex-direction: column;
  margin: 20px;
}

.items-center {
  align-items: center;
}

.title-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 80%;
  justify-content: space-around;
  /* gap: 150px; */
}

.horizontal-wrapper {
  display: flex;
  flex-direction: row;
  margin: 20px;
}

#practice-exercise-wrapper {
  width: min(100%, 800px);
  border-radius: 20px;
}

.practice-exercise img {
  width: 100%;
  height: auto;
  border-radius: 15px;
  border: 1px solid gray;
  box-shadow: 5px 5px 15px gray;
}

.practice-exercise {
  padding: 10px 20px 20px 20px;
}

.practice-exercise:first-child {
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}

.practice-exercise:last-child {
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}

.practice-exercise:nth-child(even) {
  /* blue */
  background-color:#e3f2fc; 
}

.practice-exercise:nth-child(odd) {
  /* orange */
  background-color:#fcd9b1;
}

.practice-exercise-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  /* gap: 20px; */
  margin: 0 0 15px 0;
}

.practice-exercise-header .intro-audio-wrapper {
  display: flex;
  flex-direction: column;
  width: 25%;
}

.practice-exercise-header .exercise-audio-wrapper {
  display: flex;
  flex-direction: column;
  width: 60%;
}

.practice-exercise-header small {
  margin: 0;
  padding-left: 10px;
}

.practice-exercise-header audio {
  width: 100%;
}

/* Header/Blog Title */
.header {
  margin-left: 0px;
  padding: 0px;
  text-align: left;
  height: 88px;
  background: #fda829;
  background-image: url('images/headerRight.png'), url('images/headerCenter.png');
  background-position: right, left;
  background-repeat: no-repeat, repeat-x;
}

.header h1 {
  font-size: 50px;
}

.header-img {
	width: 100%;
	height: 88px;
	background-repeat: no-repeat;
	background-image: url('images/aataLogo.png');
}

.header-img-r {
  width: 100%;
  height: 88px;
  background: url('images/headerRight.png');
  background-repeat: no-repeat;
  float: right;
}

/* Style the top navigation bar */
.topnav {
  overflow: hidden;
  background-color: #67479d;
}

/* Style the topnav links */
.topnav a {
  float: left;
  display: block;
  color: #fda829;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

/* Change color on hover */
.topnav a:hover {
  background-color: #ddd;
  color: black;
}

.nocolumn {
	margin-left: 10px;
	margin-right: 5px;
}

/* Create two unequal columns that floats next to each other */
/* Left column */
.leftcolumn {   
  
  float: left;
  width: 65%;
 
}

/* Right column */
.rightcolumn {
  float: left;
  width: 35%;
  background-color: #f1f1f1;
  padding-left: 20px;
}

/* Fake image */
.fakeimg {
  background-color: #aaa;
  width: 100%;
  padding: 20px;
}

/* Real image */
.img {
  background-color: #aaa;
  width: 100%;
  padding: 20px;
}

.imgright {
	float: right;
	margin: 5px 20px 20px 10px;
}

.imgleft {
	float: left;
	 margin: 5px 20px 20px 0;
}

/* Add a card effect for articles */
.card {
  background-color: #f1f1f1;
  padding: 20px;
  margin-top: 20px;
}

/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}

/* Footer */
.footer {
  padding: 20px;
  text-align: center;
 
  margin-top: 0px;
}

/* Responsive layout - when the screen is less than 800px wide, make the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 800px) {
  .leftcolumn, .rightcolumn {   
    width: 100%;
    padding: 0;
  }
}

/* Responsive layout - when the screen is less than 400px wide, make the navigation links stack on top of each other instead of next to each other */
@media screen and (max-width: 400px) {
  .topnav a {
    float: none;
    width: 100%;
  }
}
