* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


body {
    height: 100vh;
    width: 100%;
    background-image: url("./images/bg.jpg");
    background-size: cover;
    background-position: center;
}

header {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 5px 150px;
    gap: 50px;
    background: linear-gradient(to right, rgba(80,80,80,0.3), rgba(50,50,50,0.5) );

}
header nav {
    flex: 1;
    max-width: 600px;
}

ul {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

header nav ul li {
  list-style: none;
}

header nav ul li a {
    color: white;
  font-size: 16px;
  text-decoration: none;
  transition-duration: 0.2s;
  transition-timing-function: ease-out;
  font-weight: 600;
}

header nav ul li a:hover {
    font-size: 17px;
    color: aliceblue;
    text-decoration: underline;

}

header nav ul li a.contact {
    display: block;
    background-color: mediumseagreen;
    padding: 10px 20px;
    border-radius: 15px;
}


header .logo {
    height: 100px;
    width: 170px;
}