*{
    margin: 0;
    padding: 0;
}
html{
    scroll-behavior:smooth;
}
body{
    box-sizing: border-box;
    overflow-x: hidden;
    background-color: #104057;
}

header{
    color: white;
    background-color: rgb(8, 107, 121);
    font-size:large;
    font-weight: 600;
}
.header{
    padding: 0 5rem;
    min-height: 70px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}
.logo a img{
    height: 50px;
}

nav{
    display: flex;
    gap: 2rem;
}
nav a{
    padding: 0 5px;
    color: white;
    text-decoration: none;
    transition: all .5s ease-in-out ;
}
nav a:hover{
    text-decoration-color: #ffffff;
    text-decoration-line: underline;
    filter:drop-shadow(2px 2px 25px #ffffff) ;
}
.btn a{
    padding: .5rem 1.5rem;
    text-decoration: none;
    color: white;
    background-color: transparent;
    border: 2px solid white;
    border-radius: 2px;
    transition: all .3s ease-in-out ;
}
.btn a:hover{
    color: #968888;
    background-color: white;
}

/* =========================================================================================================================================== */
        #game{
            display: flex;
            flex-direction: row;
            justify-content: center;
            align-items: center;
            text-align: left;

            color: #ffffff;
            padding: 1rem 5rem;
        }
        
        .game-text{
            font-size: 1.5rem;
            line-height: 1.5;
            padding: 0 1rem;
        }
        .game-text ul{
            list-style: disc;
            line-height: 1;
            font-size: 1.5rem;
            padding: 0 5rem;
        }

        /* =========================================================================================================================================== */

.footer {
    color: white;
    background-color: #0d587a;
    font-size:large;
    font-weight: 600;
    text-align: center;
    padding: 15px 0;
    position: relative;
    bottom: 0;
    width: 100%;
}

.footer-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 10px;
  }
  
  .footer-links {
    display: flex;
    gap: 20px;
  }
  
  .footer-links a {
    color: #fff;
    text-decoration: none;
    transition: all .5s ease-in-out;
  }
  
  .footer-links a:hover {
      text-decoration-line: underline;
    text-decoration-color: #ffffff;
    filter:drop-shadow(2px 2px 25px #ffffff);
  }