/* Global Styles */  
::selection { 
    color: #fff; 
    background: #61b902;
}
body {
    font-family: 'Poppins';
    font-size: 18px;
    line-height: 20px;
    padding: 25px;
    overflow: auto;
    max-width: 1024px;
    margin: auto;
}
body main h2.web-url a{
    color: #61b902;
    text-decoration: none;
    font-weight: 600;
}
body main p.coming-soon-label{
    font-weight: 600;
}

body footer a{
    color: #222;
    text-decoration: none;
    font-weight: 600;
}
body footer a:hover{
    color: #61b902;
}
body footer a span {
    border: solid 1px #222;
    width: 30px;
    height: 30px;
    line-height: 27px;
    display: inline-block;
    border-radius: 25px;
    margin-right: 5px;
}
body footer a:hover span{
    border-color: #61b902;
}

/* On screens that are 600px or less */
@media screen and (max-width: 600px) {
    body {
        padding: 15px;
        max-width: none;
        line-height: var(--bs-body-line-height);
    }
    body footer a{
        font-size: 18px;
        display: block;
        margin-bottom: 20px;
    }
    body footer .last-item a{
        margin-bottom: 0;
     }
  }