body{
    height: 1000px;
    margin:auto;
    text-align: center;
    font-family: sans-serif;
    background-color: black;
}
html{
    scroll-behavior: smooth;
}
header{
    position: fixed;
    top: 0;
    width: 100%;
    padding: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    color: white;
}
h1{
    margin-top: 100px;
}
nav{
    display: flex;
    position: fixed;
    top: 20px;
    width: 100%;
    background-color: rgb(243, 66, 210);
    padding: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    gap: 20px;
    a{
        color: white;
        text-decoration: none;
        padding: 5px 10px;
    }
}
a:hover{
    background-color: black;
    color: white;
    border-radius: 5px;
}
.current{
    background-color: white;
    color: black;
    border-radius: 5px;
}
#account{
    margin-top: 50px;
    a{
        margin-top: 20px;
        background-color: rgb(243, 66, 210);
        color: white;
        padding: 5px 10px;
        border-radius: 5px;
        text-decoration: none;
        font-size: 100px;
    }
    a:hover{
        text-decoration: underline;
    }
}
.description{
    margin: 50px;
}

h2{
    margin-top: 100px;
}
.opening{
    color: white;
    align-items: center;
}
.form-panel {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  background-color: rgb(243, 66, 210);
  padding: 20px;
  border-radius: 10px;
  width: 300px;
  margin: auto;
}

.hidden {
  display: none;
}

#login-form p,
#account-form p {
  color: white;
  font-size: 20px;
}

legend{
    color: white;
    font-size: 20px;
}
fieldset{
    border: 1px solid white;
    padding: 10px;
    margin-bottom: 20px;
}

.welcome-text{
    color: white;
    font-size: 20px;
}