body{
    color: #b5b5b5;
    margin: 0;
    padding: 0;
    background-color: rgb(180, 180, 180);
}
header{
    background-color: #444444;
    width: fill;
    padding: 25px;
}
.blueBar{
    background-color: #374F7E;
    width: fill;
    padding: 15px;
}
.container{
    display: flex;
    justify-content: space-between;
}

.nav{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-left: 50px;
    margin-right: 50px;
}

.navbutton{
    padding: 25px;
    margin-left: 50px;
    width: 200px;
    background-color: #374F7E;
    border: none;
    border-radius: 15px;
    transition: 0.3s;
    transition: transform 0.5s ease;
    cursor: pointer;
}
.navbutton:hover{
    transform: scale(1.20);
}
.welcomeText{
    font-size: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    color: black;
}

.rules{
    background-color: #646464;
    border: solid;
    border-radius: 15px;
}
ul {
    display: flex;
    flex-direction: column;
    list-style-type: circle;
    margin-left: 450px; 
    width: 530px;
    gap: 10px;
    padding: 20px;
}

li {
    font-size: 20px;
    color: black;
}


.footerStyle{
    background-color: #444444;
    width: fill;
    padding: 25px;
    height: 100px;
}

/* responsive design */
@media (max-width: 800px) {
    .header {
        flex-direction: column;
        align-items: center;
    }

    .nav {
        flex-direction: column;
        align-items: center;
        margin-left: 0;
        margin-right: 0;
    }

    .container {
        flex-direction: column;
        align-items: center;
    }
    .homepage{
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .navbutton {
        width: 100%;
        margin: 10px 0;
    }
    ul {
        margin: auto;
        width: 300px;
    }
}
