
header {
    background: url("../images/Pic.jpg");
    background-size: cover;
    background-position: center;
    height: 100vh; 
    display: flex; 
    flex-direction: column;
    justify-content: flex-start;
    align-items: left; 
    color: white;
    padding: 20px;
}

@font-face {
  font-family: "CreatoDisplay";
  src: url('../fonts/CreatoDisplay-Medium.otf') format('opentype');
  font-weight: 600;
  font-size: 48px;
}

header h1 {
    font-family: "CreatoDisplay", sans-serif;
    text-align: left;
    font-size: 48px;
    font-weight: 600;
    color: #ffffff; 
    margin: 0;
}

header h3 {
  font-family: "CreatoDisplay", sans-serif;
  padding-left: 37px;
  margin: 10px;
}


header nav ul { /* In use */
    list-style: none;
    display: flex;
    position: absolute;
    top: 20px;
    right: 20px;
}

/* header nav li {
    margin-left: 20px;
}

header nav a {
    text-decoration: none;
    color: #666;
    transition: 0.3s ease ;
} */
/* 
header nav a:hover {
    color: #0076ff;
} */

body {
    background-color: black;
}