* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color: white;
}

body {
    background-color: rgb(30, 30, 30);
    width: 400px;
    height: 400px;
    font-family: "Be Vietnam Pro";
}

.title {
    font-size: 2rem;
    font-weight: bold;
}

.nav-item {
    font-size: 1.2rem;
    margin: 5px;
}

header {
    padding: 10px;
    height: 60px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

hr {
    margin: 0 auto;
    width: 90%;
    border: 0.5px solid white;
    border-radius: 0.25px;
}

.section {
    margin: 5px;
}

.section-inner {
    margin: 0 5px;
}

.section-head {
    color: white;
    font-size: 1.4rem;
}

p {
    color: lightgray;
}

main {
    padding: 5px 20px;
}

.welcome {
    font-family: "Be Vietnam Pro";
    opacity: 0%;
    margin: 0 auto;
    color: white;
    font-size: 2rem;
    position: fixed;
    top: 20%;
    left: 50%;
}

.maindiv {
    width: 80%;
    height: 150px;
}

.danger-zone {
    background-color: rgba(255,0,0,0.2);
    border-radius: 10px;
    padding: 10px;
    margin-top: 20px;
}

button {
    border: none;
    background-color: white;
    border-radius: 10px;
    height: 25px;
    width: auto;
    padding: 5px;
}

#save {
    margin: 10px;
}

#save, #reset-button {
    color: black;
    margin-top: 3px;
    margin-bottom: 3px; 
}
