@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

.poppins-regular {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
  }

html {
    scrollbar-width: none;
}

body {
    font-family: "Poppins", sans-serif;
    text-align: center;
    background: linear-gradient(#B3B3B3, #212121);
    padding: 20px;
}

h1 {
    margin: 0 auto;
    width: fit-content;
    font-size: 50px;
    color: #212121;
}

h3 {
    margin: 0 auto 10px auto;
    font-size: 25px;
    color: #212121;
}

.role-model {
    height: 150px;
    margin-bottom: 0;
}

#game-board {
    height: 400px;
    width: 400px;
    background-color: #1DB954;
    border: #15803a;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
}

.tile {
    width: 90px;
    height: 90px;
    border: 5px solid #15803a;

    /* remove later */
    font-size: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

#new-game {
    background-color: #D9D9D9;
    font-weight: 900;
    color: #212121;
    font-size: 20px;
    border: none;
    margin: 15px auto;
    width: 200px;
    height: 50px;
    border-radius: 25px;
}

#new-game:hover {
    color: #F5F5F5;
    background-color: #B3B3B3;
    box-shadow: 1px 3px 5px 0 #b3b3b3cf;
}

h2 {
    color: #F5F5F5;
    margin: 15px auto;
}

p {
    margin: 15px auto;
    color: #F5F5F5;
    width: 60%;
}

h4 {
    color: #F5F5F5;
    margin: 10px auto;
}

#tile-guide-title {
    margin: 20px auto;
}

#level-image {
    width: 200px;
    height: 200px;
    background-size: cover;
    background-position: center;
    border-radius: 5px;
    margin: 0 auto;
}

#guide-progress {
    width: 25%;
    height: 5px;
    background-color: #F5F5F5; /* light grey base */
    border-radius: 5px;
    overflow: hidden;
    margin: 10px auto;
  }
  
  #progress-fill {
    height: 100%;
    width: 0%;
    background-color: #212121; /* dark grey fill */
    transition: width 0.3s ease;
  }

.play-button {
    color: #212121;
    width: 50px;
    height: 50px;
    background-color: #F5F5F5;
    border-radius: 100%;
    align-content: center;
}

.skip-btn {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
  }
  

#buttons {
    display: inline-flex;
    gap: 30px
}

#logo {
    margin: 75px auto 20px auto;
    height: 50px;
}
