@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

*{
    margin: 0;
    padding: 0;
    color: rgb(234, 234, 234);
    background-color: rgb(10, 10, 10);
    font-family: 'montserrat', 'sans-serif';
    letter-spacing: 0rem;
}

.nav{
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 50px;
    width: 100%;
    background-color: #222;
    margin-bottom: 5rem;
    position: sticky;
}

.nav ul{
    display: flex;
    list-style: none;
    justify-content: center;
    height: 50px;
    width: 100%;
    overflow: hidden;
    background-color: #222;
}

.nav li{
    padding: 1rem 0;
    height: 100%;
    background-color: #222;
}

.nav a{
    text-decoration: none;
    padding: 15px;
    text-align: center;
    background-color: #222;
    border-radius: .5rem;
    transition: padding 200ms ease-out 0ms;
}

.nav a:hover{
    background-color: rgb(20, 20, 20);
    padding-left: 18px;
    padding-right: 18px;
}

.welcoming{
    margin-bottom: 2rem;
}

.welcoming button{
    border: none;
}

.welcoming button a{
    text-decoration: none;
}

.welcoming button a:hover{
    font-weight: 500;
}

main{
    display: flex;
    flex-direction: column;
    text-align: center;
    justify-content: center;
    width: 100%;
}

.dalist{
    width: 100%;
    padding: .1rem;
    display: flex;
    position: relative;
}

.listelement{
    display: flex;
    margin: .1rem;
    margin-bottom: .33rem;
    width: 50%;
    transform-origin: center;
}

.levelinfo{
    margin-left: 3rem;
    text-align: center;
}

.levelinfo h1{
    text-align: center;
}

.levelinfo p{
    text-align: center;
}

.levelinfo p h4{
    text-align: center;
}