@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300..700&display=swap');
body{
background-color:rgb(255, 255, 255);
font-family: "Quicksand", sans-serif;

padding: 20px;
line-height: 1.6;
}

.content{
background-color:beige;
max-width: 1000px;

margin: 0 auto;
padding: 30px;
border: 50px solid beige;
box-shadow: 0 0 10px blue;
}

.top-section{
  display:flex;
 margin-top:20px;
}

h2{
    color:rgb(255, 0, 119);
}

h1{
    color:rgb(0, 153, 255);
}

.navbar{
    list-style: none;
    margin: 0;
     padding: 0;
    background-color:beige;
    display: flex;
    justify-content: center;
    position: fixed;
    top: 0; left: 0; width: 100%;
}