@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300&display=swap');
body {
    width:820px;
    margin: auto;
    background-color: #222222;
}
main {
    background-color: #222222;
    color: rgb(185, 184, 184);
}

header {
    background-color: rgb(50, 50, 50);
    padding: 30px;
    border-radius: 200px;
}

h1, h2, h3, p {
    font-family: Arial, Helvetica, sans-serif;
}

h1 {
    color: rgb(196, 196, 196);
    text-align: center;
}

h2,h3 {
    color: rgb(215, 215, 215)
}

h2 {
border-bottom: 4px dotted #666666;
font-size: 25px;
}

a {
    color: #ec8037;
    font-weight: bold;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}
table, td, th {
    border: 1px solid white;
}
table {
    border-collapse: collapse;
}
th, td{
    padding: 10px;
}
th{
    background-color: rgb(46, 46, 46);
}
dd{
    padding-left: 20px;
}
.bg-gray{
    background-color: #222222;
}
.text-center{
    text-align: center;
    text-transform: capitalize;
}
.bold{
    font-weight: 900;
}
#myfooter{
    background-color: white;
}
.footer{
    background-color: red !important;
}
li {
    width: 7vw;
    animation: pulse 5s infinite;
    transition: transform 0.1s ease-in-out;
}
li:hover{
    transform: scale(1.1);
}
.copyright{
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #333;
    color: white;
    text-align: center;
    padding: 3px;
}
::-webkit-scrollbar {
    width: 12px;
    background-color: #222222;
  }
  
  ::-webkit-scrollbar-thumb {
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1);
    background-color: #333;
}
.home-button {
    color: rgb(185, 184, 184);
    text-decoration: none;
    font-size: large;
    position: fixed;
    border: 20px solid;
    background-color: #0a0a0a;
    border-color: #0a0a0a;
    border-radius: 20px;
    top: 5px;
    left: 5px;
    animation: pulse 5s infinite;
    transition: transform 0.1s ease-in-out;
  }
  .home-button:hover{
  transform: scale(1.1);
}