html {
    height: 100%;
    width: 70%;
    background-image: url(./background/Bg.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    overflow: auto;
    margin: auto;
}

body {
    background-color: rgba(0, 0, 0, 0.9);
    margin: auto 0;
    padding: 5%;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: repeat(10, minmax(min-content, max-content));
    font-size: 10px;
    font-family: 'calibri';
    text-shadow: 5px, 5px;
    color: rgb(255, 255, 255);
}

a {
    text-decoration: none;
    color: lightblue;
}

#play {
    background-color: blueviolet;
    border-radius: 10px;
    color: white;
    grid-area: 2/1/4/6;
    font-size: 1.7rem;
    margin: auto;
    width: 10%;
    text-align: left;
}

button {
    background-color: rgb(162, 28, 211);
    border-radius: 10px;
    color: white;
    padding: 10px;
    font-size: 1.2rem;
    margin: auto;
    width: 100%;
}


header {
    grid-area: 1/ 2/ 2/ 5;
    text-align: center;
    
}

h1, h3 {
    color: rgb(255, 255, 255);
    font-weight: bold;
}

h1 {
    font-size: 3rem;
}

h2 {
    font-size: 1.75rem;
}

h3 {
    font-size: 2rem;
}

h4 {
    font-size: 1.57rem;
}

p, ul, ol {
    font-size: 1.5rem;
    line-height: 1.5;
}

section {
    grid-column: 2/ 5;
    display: flexbox;
    
    flex-direction: column;
}

span {
    font-weight: bold;
    color: rgb(154, 90, 197);
}

h3 {
    grid-area: 1/1/2/5;
    text-align: center;
}

li {
    list-style: none;
}




#credits {
    text-align: center;
}

