* {
    margin: 0;
    padding: 0;
    outline: none;
    border: none;
    text-decoration: none;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

body {
    overflow: hidden;
    background-image: linear-gradient(315deg, rgb(190, 246, 174) 0%, rgb(238, 181, 239) 100%);
}

.topnav {
    background-color:rgb(158, 248, 158);
    overflow: hidden;
}

/* Style the links inside the navigation bar */
.topnav a {
  float: left;
  color: black;
  text-align: center;
  padding-inline: 50px;
  text-decoration: none;
  font-size: 27px;
  margin-top: 25px;
}

/* Change the color of links on hover */
.topnav a:hover {
  background-color: #ddd;
  color: black;
}

/* Add a color to the active/current link */
.topnav a.active {
  background-color: #04AA6D;
  color: white;
}

/* Right-aligned section inside the top navigation */
.topnav-right {
  float: right;
}

.topnav img{
    margin-top: 3px;
    margin-left: 3px;
    width: 150px; 
    height: 100px;
    border: 3px solid black;
}

h1{
    text-align: center;
    padding-top: 50px;
    padding-bottom: 30px;
    font-size: 40px;
    font-style: italic;
    font-family:Georgia, 'Times New Roman', Times, serif;
}

h3{
    text-align: center;
    padding-top: 30px;
    padding-bottom: 30px;
    font-size: 25px;
    font-style: italic;
    font-family: Arial, Helvetica, sans-serif;
}

.exer {
    /* Add shadows to create the "card" effect */
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
    transition: 0.3s;
  }
  
  /* On mouse-over, add a deeper shadow */
  .exer:hover {
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);
  }
  
  /* Add some padding inside the card container */
  .container {
    padding: 30px 26px;
    text-align: center;
  }

  .exer{
    width: 500px;
    height: 130px;
    border: 3px solid black;
  }

  .row1, .row2{
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-wrap: wrap;
}
