/* Reset */

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Responsive variables */

:root {
  --color-primary: #0066ff;
  --color-secondary: #ff6600;
  --color-bg: #f9f9f9;
  --color-text: #333;
  --font-body: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  --max-width: 1200px;
  --spacing: 1rem;
}

/* Primary Styles */

body {
  font-family: var(--font-body);
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  min-height: 100vh;

  /* Keeps the footer at the bottom */
  display: flex;
  flex-direction: column;
}

a {
  text-decoration: none;
  color: var(--color-primary);
  transition: 0.3s;
}

a:hover {
  color: var(--color-secondary);
}

img {
  max-width: 100%;
  display: block;
}

/* Container */

.container {
  width: 90%;
  max-width: var(--max-width);
  margin: 0 auto;
}

/* Header */

.site-header {
  background-color: lightpink;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  padding: var(--spacing) 0;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
}

.main-nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.main-nav a {
  font-weight: 500;
}

/* Main Information */

.site-main {
  padding: 3rem 0;
  font-family: Georgia, 'Times New Roman', Times, serif;

  /* Fills available space and pushes footer down */
  flex-grow: 1;
}

.intro-section h2 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

.intro-section p {
  margin-bottom: 1.5rem;
  max-width: 700px;
}

/* Buttons */

.btn-primary {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: var(--color-primary);
  color: #fff;
  border-radius: 6px;
  font-weight: 600;
}

.btn-primary:hover {
  background-color: var(--color-secondary);
}

/* Footer */

.site-footer {
  background-color: #222;
  color: #fff;
  text-align: center;
  padding: 2rem 0;
}

/* Responsive additions */

@media (max-width: 768px) {
  .header-container {
    flex-direction: column;
    gap: 1rem;
  }

  .main-nav ul {
    flex-direction: column;
    align-items: center;
  }

  .intro-section h2 {
    font-size: 1.5rem;
  }
}
.image {
  width: 90px;
  height: 90px;

  background-image: url('../media/picture.JPG');
  background-size: cover;
  background-position: center;

  border-radius: 80%;
  position: absolute;
  top: 20px;
  right: 20px;

  border: 5px solid white;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}