*{
  margin: 0;
  padding: 0;       
} 

.container{
    width: 100vw;
    height: 100vh;
}

nav {
    padding: 20px;
    margin: 0;
    height: 20px;
    background-color: white;
    color: black;
}

.nav-heading , .nav-item{
    display: flex;
    justify-content: space-around;
    align-items: center;    
}

h4 {
    font-size: 2rem;
}

li {
    margin-right: 80px;
    margin-left: 20px;
    font-size: 1.5rem;
    list-style: none;
}

li a {
    text-decoration: none;
}

.text-container{
   display: flex;
   flex-direction: column;
   align-items: center;
   margin-top: 200px;
}

.box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5rem;
}

#text {
    font-weight: bold;
    color: black;
    font-size: 3rem;
    line-height: 6rem;
}

#btn {
    font-size: 1.5rem;
    font-weight: bolder;
    border: none;
}