body {
    background-color: #1a1a2e;
    color: rgb(255, 255, 255);
    font-family: Arial, sans-serif;
    padding: 20px;
}

h1 {
    text-align: center;
    color: rgb(17, 0, 255);
}

img{
    width: 100px;
    height: 100px;
}

.icon-list img:hover{
    opacity: 0.7;
}

.icon-list img{
    transition: opacity 0.3s;
}

.icon-list{
    list-style: none;
    display: flex;
    gap: 20px;
}

.container{
    max-width: 900px;
    margin: 0 auto;
}

.icon-list a{
    color: white;
    text-decoration: none;
    text-align: center;
}

.nav{
    background-color: #0f0f1a;
    padding: 10px 20px;
    display: flex;
    gap: 20px;
}

.nav a {
    color: white;
    text-decoration: none;
    transition: color 0.3s, opacity 0.3s;
    /*transition: all 0.3*/
}

.nav a:hover{
    opacity: 0.7;
    color: red;
}

.spec-list{
    list-style: none;
    padding: 0;
}

.about-sub{
    color: blue;
}

.game{
    color: white;
    list-style: none;
    text-decoration: none;
    text-align: center;
}
