<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*
Author: Nico Teti
File Name: styles.css
*/

ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background-color: #333;
}

li {
  float: right;
}

li a {
  display: block;
  color: white;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

.logo {
  float: left;
  display: block;
  color: white;
  border-style: solid;
  border-color: black;
}

/* Styles for links on homepage */
.links {
  text-align: center;
  font-family: Arial, sans-serif;
}

/* Change the link color to #111 (black) on hover */
li a:hover {
  background-color: #111;
}

a:hover {
  color: gray;
  background-color: transparent;
  text-decoration: underline;
}

h1 {
  font-family: Verdana, sans-serif;
  text-align: center;
  padding: 3px;
  display: block;
}

h2 {
  text-align: center;
  padding: 3px;
  display: block;
}

h3 {
  text-align: center;
  font-family: Arial, sans-serif;
  font-type: bold;
}

p {
  font-family: Arial, sans-serif;
}

picture {
  text-align: center;
  padding: 3px;
  display: block;
}

#resumelink {
  text-align: center;
  margin: auto;
  width: 50%;
  padding: 10px;
}

.portfolio {
  text-align: center;
}

.hypertext {
  text-align: center;
  font-family: Arial, sans-serif;
  font-size: 1em;
}

.interests {
  text-align: center;
}

/* Style rules for table */

 table {
  margin: 0 auto;
  width: 100%;
}

 caption {
  font-size: 1.5em;
  font-weight: bold;
  padding: 1%;
}

 th, td {
  padding: 2%;
}

 th {
  font-size: 1.15em;
}

figcaption {
  font-style: italic;
  font-size: .5em
}

/* Style rules for Contact */
.contact {
  text-align: center;
  padding: 3px;
  display: block;
}

/* Style inputs for textareas */
input[type=text], select, textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid black;
  box-sizing: border-box;
  margin-top: 6px;
  margin-bottom: 16px;
  resize: vertical;
}

/* Submit button background color */
input[type=submit] {
  background-color: #333;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 4px;
}

/* Submit button hover */
input[type=submit]:hover {
  background-color: green;
}

/* Background color and padding */
.container {
  background-color: #f2f2f2;
  padding: 20px;
}

/* Style rules for footer */
footer {
  text-align: center;
  padding: 3px;
  display: block;
}</pre></body></html>