* {
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
}

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

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

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

/* Style the content */
.content {
  background-color: #ddd;
  padding: 14px 16px;
  text-decoration:none;
	
	  color: black;

  //height: 200px; /* Should be removed. Only for demonstration */
}
	
.content a {
  color:#151D6B; /* Sets the link text color to a shade of blue */
  text-decoration: underline; /* Ensures the link is underlined */
  text-decoration-color: #151D6B; /* Sets the underline color to match the text color */
}

/* Styling for links when the mouse hovers over them */
.content a:hover {
  color: #dc3545; /* Changes the link text color to red on hover */
  text-decoration-color: #dc3545; /* Changes the underline color to red on hover */
}

/* Styling for links that have been visited */
.content a:visited {
  color: #6c757d; /* Changes the link text color to grey after being visited */
  text-decoration-color: #6c757d; /* Changes the underline color to grey after being visited */
}

/* Styling for links when they are actively being clicked */
.content a:active {
  color: #28a745; /* Changes the link text color to green when active */
  text-decoration-color: #28a745; /* Changes the underline color to green when active */
}

.responsive-container {
        position: relative;
        width: 100%;
        padding-bottom: 56.25%;            
        height: 0;
    }
    .responsive-container iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

/* Style the footer */
.footer {
  background-color: #f1f1f1;
  padding: 10px;
}