/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

.header{
    background-color: var(--bg-color-alt);
    width: 758px;
    display:flex;
    position: relative;
    left: 325px;
    text-align: center;
    justify-content: center;
    border-radius: 10px 10px 10px 10px;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

.lol .itemslol{
    background-color: #0d0932;
    width: 758px;
    display: flex;
    flex-direction: row;
    color: aliceblue;
    position: relative;
    left: 270px;
    margin: 20px 30px 40px 30px;
    border-radius: 10px 10px 10px 10px;
    padding: 0.1px 0.1px 0.1px 0.1px;
  }

.itemslol{
    justify-content: space-evenly ;
   flex-grow:   inherit;
    
}
a{
    background-color: var(--bg-color-alt);
    width: 1000px;
    margin: 326px;
    color: var(--text-color);
    font-size: var(--font-size);
    padding: 10px;
    padding-right: 698px;
    border-radius: 10px 10px 10px 10px;
}

.v{
    background-color: var(--bg-color-alt);
    width: 160px;
    height: 30px;
    position: relative;
    left: 324px;
    margin-right: 10px;
    bottom: 830px;
    border-radius: 7px 7px 7px 7px;
}

.v2{
    background-color: var(--bg-color-alt);
    width: 160px;
    height: 30px;
    position: relative;
    left: 324px;
    margin-right: 10px;
    bottom: 818px;
    border-radius: 7px 7px 7px 7px;
}

.v3{
    background-color: var(--bg-color-alt);
    width: 160px;
    height: 30px;
    position: relative;
    left: 324px;
    margin-right: 10px;
    bottom: 804px;
    border-radius: 7px 7px 7px 7px;
}

.v4{
    background-color: var(--bg-color-alt);
    width: 160px;
    height: 30px;
    position: relative;
    left: 324px;
    margin-right: 10px;
    bottom: 790px;
    border-radius: 7px 7px 7px 7px;
}

.v5{
    background-color: var(--bg-color-alt);
    color: var(--text-color);
    width: 160px;
    height: 30px;
    position: relative;
    left: 324px;
    margin-right: 10px;
    bottom: 776px;
    border-radius: 7px 7px 7px 7px;
}

.body{
    background-color: var(--bg-color-alt);
    color: var(--text-color);
    width: 587px;
    display: flex;
    position: relative;
    left: 485px;
    height: 800px;
    margin: 10px;
    border-radius: 10px 10px 10px 10px;
    bottom: 20px;
}

body{
    background-color: var(--bg-color);
    color: var(--text-color);
    
}
 
:root{
    --text-color: rgb(195, 199, 202);
    --bg-color: #040217;
    --font-size: 16px;
    --bg-color-alt: #0d0932;
}

