/* This stylesheet is for your tested CSS, styles here will be deactivated when toggling wireframe style */

/* Global styles */
html {
  font-family: Arial, sans-serif;
  font-size: 16px;
  color: #333;
}

body {
  margin: 0;
  padding: 0;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: #333;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Header styles */
header {
  background-color: #0050a0;
  color: #fff;
  padding: 10px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header img {
  margin-right: 10px;
}

/* Navigation styles */
nav {
  background-color: #f2f2f2;
  padding: 10px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
}

nav li {
  margin-right: 20px;
}

nav a {
  font-weight: bold;
}

/* Main content styles */
main {
  padding: 20px;
  background-color: #f5f5f5;
}

#about-me {
  margin-bottom: 40px;
}

h2 {
  font-size: 2.5rem;
  margin-top: 0;
  margin-bottom: 20px;
}

h3 {
  margin-top: 40px;
  margin-bottom: 10px;
}

p {
  margin: 0;
  margin-bottom: 20px;
  line-height: 1.5;
}

b {
  font-weight: bold;
}

section {
  padding-left: 20px;
  border-left: 2px solid #ccc;
}

/* Footer styles */
footer {
  background-color: #ccc;
  color: #333;
  padding: 10px 20px;
  text-align: center;
}