body {
    background-color: #000;
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    color: #fff;
}
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /*padding: 20px;*/
    padding-top: 10px;
    padding-bottom: 30px;
}
.holder {
    padding-left: 6%;
    padding-right: 6%;
}
.icon {
    /* You can add your icon background here */
    width: 160px;
    height: 80px;
    /* Replace the background property with your icon */
    /* background-color: #fff; */
}

a{
  color: #8c8cf0;
  background-color: transparent;
  text-decoration: none;
}

a:hover{
  color: #8c8cf0;
  background-color: transparent;
  text-decoration: underline;
}

nav {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
nav a {
    font-size: 20px;
    color: #fff;
    text-decoration: none;
    padding: 0 10px;
    position: relative;
    bottom: -25px;
}
/*.container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    grid-gap: 20px;
    padding: 20px;
}*/
/*.game {
    background-color: #333;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
}*/