/*Styling for index.html*/

/*Setting the body style*/
    body {font-family: 'Among Us', sans-serif;}

/*Styling Background*/
    .bg 
    {
        color:rgb(148, 0, 0);
        background: linear-gradient(0deg, rgb(192, 0, 0) 0%, rgb(0, 0, 0) 100%);
    }

/*Styling Button*/
    .button 
    {
        background-color: azure;
        border: 1px solid rgb(46, 46, 46);
        border-radius: 25px;
        padding: 12.5px;
        font-family: 'Among Us', sans-serif;
        box-shadow: 0 8px 16px 0 rgba(0,0,0,0.5);
    }

    .button a 
    {
        text-decoration: none;
        color: rgb(66, 66, 66);
        font-size: 22px;
        font-weight: bold;
        transition: 0.3s;
        font-family: 'Among Us', sans-serif;
    }

    .button a:hover
    {
        font-size: 25px;
    }

/*Styling logo/Navbar*/
    .logo
    {
        position: fixed;
        top: 0;
        left: 0;
        padding: 10px;
        width: 100%;
        height: max-content;
        position: fixed;
        background: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 100%);;
    }

/*Styling space between navbar and content*/
    .DivMain {margin-top: 105px;}