/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body {
  background-color: black;
  color: black;
  font-family: Verdana;
  margin: 0;
  padding: 0;
}

iframe[seamless] {
    border: none;
    background: rgba(0,0,0,0);
}

img { 
  display:block; 
  height: 100%;
  width: 100%;
} 

ul{
  list-style-type: none
}

a:link, a:visited {
  background-color: lightblue;
  color: white;
  /*padding: 14px 25px;*/
  color: purple;
  padding: 0px; 
  text-align: center;
  text-decoration: none;
  display: inline-block;
}

.asmall:link, .asmall:visited{
 color: purple;
}

.alarge:link, .alarge:visited{
 background: rgba(200,200,200,0.7); 
 color: blue;
 /*padding: 5px; */
 padding: 3px 6px;
}

a:hover, a:active, .alarge:active, .alarge:hover, .asmall:active, .asmall:hover{
  background-color: red;
}

a.old-school-button {
  display: inline-block;
  padding: 3px 6px;
  background-color: #c0c0c0; /* classic gray */
  color: black;
  text-decoration: none;
  border: 4px solid #808080; /* medium gray outline */

  /* Faux 3D effect */
  border-top-color: #ffffff;    /* light edge */
  border-left-color: #ffffff;
  border-bottom-color: #404040; /* shadow edge */
  border-right-color: #404040;

  font-family: 'Segoe UI', Tahoma, sans-serif;
  box-sizing: border-box;
}

a.old-school-button:active {
  border-top-color: #404040;
  border-left-color: #404040;
  border-bottom-color: #ffffff;
  border-right-color: #ffffff;
}

.container {
  display: flex; /* or inline-flex */
  min-height: 100vh;
  background-color: orange;
  max-width: 100%;
  flex-direction: row; 
}

.toggle-btn {
  padding: 10px;
  background-color: #333;
  color: white;
  border: none;
  cursor: pointer;
}

.no-select {
  user-select: none;           /* Standard syntax */
  -webkit-user-select: none;   /* Safari */
  -moz-user-select: none;      /* Firefox */
  -ms-user-select: none;       /* Internet Explorer/Edge */
}

.textcontainer{
  display: flex;
  max-width: 100%;
  flex-direction: column;
}

.linkcolumn{
  display: flex;
  flex: 1;
  background: black; 
  color: white;
}

.textcolumn{
  display: flex; 
  flex: 10;
  background: lightgreen;
  color: black;
  max-width: 100%;
  padding: 10px;
}







