﻿
/* ===============================
   Base Styles
   =============================== */
html {
  font-size: 16px;
}

body {
  background-color: #8fc9eb;
  margin: 25px;
  font-family: "Times New Roman", Arial, Courier, sans-serif;
  color: black;
  line-height: 1.5;
}

p {
  font-size: 2rem;
}

.center {
  text-align: center;
}


/* ===============================
   Headings
   =============================== */
h1 {
  font-size: 2.5rem;
  text-align: center;
  text-decoration: none;
  color: black;
  margin: 1rem 0;
}

h2 {
  font-size: 2rem;
  text-align: left;
  text-decoration: none;
  color: black;
  padding-left: 3rem;
  margin: 1rem 0;
}


/* ===============================
   Links
   =============================== */
a:link,
a:visited {
  color: black;
  text-decoration: underline;
  padding: 0.1em 0.5em 0.5em 0.1em;
}

a:visited {
  text-decoration: none;
}

a:hover {
  color: red;
  text-decoration: underline;
}

a:active {
  color: black;
  text-decoration: underline;
}

/* ===============================
   Lists
   =============================== */
ul {
  list-style-type: none;
  padding-left: 0;
  margin: 0;
}

ul ul {
  list-style-type: circle;
  list-style-position: inside;
}

ul > li {
  font-size: 2rem;
  color: #000;
  padding: 8px;
}

ul ul li {
  font-size: 0.8em;
}

/* header is used in Hardware.html, Java Script, */
.header {
	font-family: "times new roman", arial, courier, sans-serif;
		  font-size: 2rem;          
		  text-align: center;
		  text-decoration:underline; 
		  
		  }


/* ================================
      TABLE
===================================*/

    
th, td {
  border: 1px solid black;
  text-align: center;
}
	
th, td {
    font-family: "times new roman", arial, courier, sans-serif;
		font-size: 1.4em;
		color: black;  
        padding-left: 0.5em;
        padding-right: 0.5em;

        
}
table {
        padding-left: 4em; 
 
}


/* ===============================
   Responsive Adjustments
   =============================== */
@media (max-width: 768px) {

  h1 {
    font-size: 1.8rem;
  }

  h2 {
    font-size: 1.4rem;
  }

  p,
  ul li {
    font-size: 1.3rem;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.3rem;
  }
}