* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
}

body {
    font-family: "Lato", sans-serif;
    font-style: normal;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #282828;
    color: #ffffff;
    padding: 1rem;
}

.main {
    background-color: #202020;
    width: 500px;
    height: 500px;
    border-radius: .8rem;
}

.nav {
    background-color: #101010;
    padding: 1rem;
    border-radius: .8rem .8rem 0 0;
}

.nav-list {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.list-item a {
    text-decoration: none;
    transition: all ease .3s;
    font-size: 1.25rem;
    color: #fff;
}

.list-item a.active {
    color: #41dc8e;
}

.wrapper {
    height: 100%;
    position: relative;
    overflow: hidden;
}

.tab {
    padding: 1rem;
    position: absolute;
    width: 100%;
    height: 100%;
    top: -500%;
    opacity: 0;
}

.tab.active {
    top: 0;
    left: 0;
    opacity: 1;
}

.tab1 h1 {
    font-size: 2.8rem;
}

h1 span {
    color: #41dc8e;
}

.tab h2 {
    margin: .5rem 0;
}

h2 {
    color: lightgray;
}

p {
    font-size: 1.1rem;
}

