﻿/* Reset default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Set the default font and background color */
body {
    font-family: Arial, sans-serif;
    background-color: #f5f5f5;
    color: #333;
    line-height: 1.6;
}

/* Add some spacing and a background color to the container */
.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Add some spacing to the h1 */
h1 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
    text-align: center;
}

h2 {
  margin-bottom: 0.75rem;
  font-size: 1.2rem;
  text-align: center;
}



/* Style the paragraphs */
p {
    margin-bottom: 10px;
    font-size: 1rem;
}

/* Style the list */
ul {
    margin-bottom: 20px;
    list-style-type: disc;
    padding-left: 20px;
}

/* Style the list items */
li {
    margin-bottom: 5px;
    font-size: 1rem;
}


ul {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  grid-gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
  border: 0px solid black;
  border-radius: 10px;
}

li {
  padding: 10px;
  background-color: #f2f2f2;
  border-radius: 5px;
  text-align: center;
}

a {
  text-decoration: none;
  color: #333;
  font-size: 1rem;
  font-family: "Helvetica Neue", sans-serif;
  font-weight: bold;
  display: block;
  margin-bottom: 5px;
}

a:hover {
  color: #0070c0;
}

a:active {
  color: #002060;
}

a:visited {
  color: #551a8b;
}

a[target="_blank"] {
  /* your styles here */
}


.myButton {
  display: inline-block;
  background-color: #4CAF50;
  border: none;
  color: white;
  padding: 10px 20px;
  text-align: center;
  text-decoration: none;
  font-size: 1rem;
  margin: 4px 2px;
  cursor: pointer;
  border-radius: 5px;
}

.myButton:hover {
  background-color: #3e8e41;
}

footer {
 border-top: 1px solid red;
 max-width: 800px;
 margin: 0 auto;
 padding: 20px;
 background-color: #fff;
 box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);

}



.tactic {
  background-color: #f5f5f5;
  border-radius: 5px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  margin-bottom: 16px;
  padding: 16px;
}
