/*
*************************************
          Copyright 2020
               
*************************************
*/


/* Google Fonts */

@import url('https://fonts.googleapis.com/css2?family=Hind+Siliguri:wght@700&family=Roboto+Slab:wght@800;900&display=swap');

/* set global font to whatever font i selected */

body {
    font-family: 'Roboto Slab', serif;
    font-family: 'Hind Siliguri', sans-serif;
    background-image: url(https://cdn.statically.io/img/i.imgur.com/xn3zsso.png);
    cursor: grab;
}


/* header */

#cursor{
    opacity: 1;
    position: relative;
   
   width: 30px;
   height: 30px;
    z-index: -1;
    border: 1px solid black;
    border-radius: 50%;
   
    
}


h1 {
    font-size: 40px;
    color: #FFFFFF;
    text-align: center;
    line-height: 50%;
    margin-bottom: 40px;
}

h2 {
    color: #FFFFFF;
    font-size: 180%;
    text-align: center;
    line-height: 1em;
}

h3 {
    color: #FFFFFF;
    text-align: center;
    line-height: 1em;
}

h2.listh {
    color: #000000;
    font-size: 180%;
    text-align: center;
    margin-top: 40px;
    margin-bottom: 5px;
}


/* header/copyright link */

.link {
    text-decoration: none;
    color: #FFFFFF;
    border-bottom: 2px dotted #FFFFFF;
    transition: .3s;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -o-transition: .3s;
}

.link2 {
    text-decoration: none;
    color: #FFFFFF;
    transition: .3s;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -o-transition: .3s;
}

.link:hover {
    color: #2ecc71;
    border-bottom: 2px dotted #2ecc71;
}

.link2:hover {
    color: #2ecc71;
    border-bottom: 2px #2ecc71;
}


/* button div */

#buttons {
    /* padding-top: 40px; */
    /* margin-top: 5px; */
    text-align: center;
}


/* start da css for da buttons */

.btn {
    border-radius: 5px;
    padding: 15px 25px;
    font-size: 22px;
    text-decoration: none;
    margin: 20px;
    color: #fff;
    position: relative;
    display: inline-block;
}

.btn:active {
    transform: translate(0px, 5px);
    -webkit-transform: translate(0px, 5px);
    box-shadow: 0px 1px 0px 0px;
}

.blue {
    background-color: #55acee;
    box-shadow: 0px 5px 0px 0px #3C93D5;
}

.blue:hover {
    background-color: #6FC6FF;
}

.green {
    background-color: #2ecc71;
    box-shadow: 0px 5px 0px 0px #15B358;
}

.green:hover {
    background-color: #48E68B;
}

.red {
    background-color: #e74c3c;
    box-shadow: 0px 5px 0px 0px #CE3323;
}

.red:hover {
    background-color: #FF6656;
}

.purple {
    background-color: #9b59b6;
    box-shadow: 0px 5px 0px 0px #82409D;
}

.purple:hover {
    background-color: #B573D0;
}

.orange {
    background-color: #e67e22;
    box-shadow: 0px 5px 0px 0px #CD6509;
}

.orange:hover {
    background-color: #FF983C;
}

.yellow {
    background-color: #f1c40f;
    box-shadow: 0px 5px 0px 0px #D8AB00;
}

.yellow:hover {
    background-color: #FFDE29;
}


/* notice */

.notice {
    margin-left: 20%;
    margin-right: 20%;
}


/* copyright stuffs.. */

p {
    text-align: center;
    color: #FFFFFF;
    padding-top: 20px;
}