* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    text-decoration: none;
}
:root {
    --corf: rgb(76, 0, 148);
}

nav {
  position: fixed;
  top: 0;
  width: 100%;
  height: 70px;
  background-color: var(--corf);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
  z-index: 999;
  display: flex;
  justify-content: center;
  align-items: center;
}
.navbar-content {
  width: 100%;
  max-width: 1100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
}
.logo img {
  height: 50px;
  object-fit: contain;
  display: block;
}
#link {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    list-style: none;
    font-weight: 500;
    margin: 0 auto; 
}
#link li a {
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}
#link li a:hover {
    color: #fffc48;
}
nav ul {
  display: flex;
  justify-content: left;
  list-style: none;
  padding: 1rem;
}
nav li {
    padding-right: 15px;
    padding-left: 15px;
    font-size: 1.1rem;
    color: aliceblue;
}
nav img {
    max-width: 65px;
    padding: 0px;
    margin: 0px;
     object-fit: contain;
}

.container {
    margin: 0 auto;
    max-width: 1000px;
    padding-top: 100px;
    display: flex;
    justify-content: center; 
    align-items: center; 
    background-color: var(--corf);        
}
.container h1 {
    font-size: 4rem;
    padding: 50px;
    text-align: center;
}
.container p {
    font-size: 1.5rem;
    padding: 45px;
    text-align: center;
}

h1 {
    color: aliceblue;
}
p {
    color: aliceblue;
}

button {
    border-radius: 15px;
    background-color: rgb(241, 185, 0);
    padding: 10px;
    border: none;
    box-shadow: 3px 3px 7px rgba(231, 177, 0, 0.466); 
    font-size: larger;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
button:hover {
    background-color: #fffc48;
    transform: scale(1.05);
}

