
*, *::after, *::before {
  padding: 0;
  margin: 0;
}

html {
  background: #abc;
  font-size: 1.125rem;
  font-family: sans-serif;
  height: 100%
}

main{
  margin-top: 100px;
}

h1, h2{
  text-align: center;
  font-family:Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
  font-size: 2rem;
}

header{
  background: rgba(68, 66, 66, 0.281); 
  padding: 18px;
  top: 0;
  width: 100%;
  position: fixed;
  z-index: 1;
}

.intro{
  display: flex;
}

.intro > * {
  margin: 2rem;
}

.intro img {
  width: 400px;
}

footer {
  position: sticky;
  bottom: 0;
}

main, body, html{
  background-image: url('pictures/background.png');
  position: relative;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
}

.intro p{
  display: flex;
  vertical-align: middle;
  align-content: center;
  flex-wrap: wrap;
}

.welcome{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
}

#projects img{
width: 400px;
}

#projects{
  margin: 4px;
  border: 1px solid black;
  padding: 4px;
}





/* The container <div> - needed to position the dropdown content */
.dropdown {
  position: relative;
  display: inline-block;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: rgba(68, 66, 66,);
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

/* Links inside the dropdown */
.dropdown-content a {
  color: black;
  background-color: grey;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

/* Change color of dropdown links on hover */
 .dropdown-content a:hover {background-color: #ddd;}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {display: block;}

.logo{
  position: fixed;
  right: 8px; 
  top: 2px;
  height: 50px;
  width: 50px;
}
.header-buttons {
  display: flex;           /* Align children in a row */
  gap: 10px;               /* Space between buttons */
}