@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap");

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
}
body
{
    overflow-x: hidden;
    background:rgba(43, 51, 59, 0.8);
    min-height: 100vh;
}
#header
{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 30px 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
#header .logo
{
    color: rosybrown;
    font-weight: 700;
    font-size: 2em;
    text-decoration: none;
}
#header ul
{
    display: flex;
    justify-content: center;
    align-items: center;
}
#header ul li 
{
    list-style: none;
    margin-left: 20px;
}
#header ul li a
{
    text-decoration: none;
    padding: 6px 15px;
    color: rosybrown;
    border-radius: 20px;
}
#header ul li a:hover
{
    background: floralwhite;
    color: rosybrown;
}
h1 
{
  margin-top: 30px;
  margin-bottom: 10px;
  margin-right: 20px;
  margin-left: 80px;
  color: floralwhite;
}
p
{
  margin-top: 10px;
  margin-bottom: 100px;
  margin-right: 150px;
  margin-left: 80px;
  color: floralwhite;
}