body{
    background-image: url('../connectwork.webp');
    margin:0px;
    font-family: 'Open Sans', sans-serif;
}
.screenSplash{
    width:100vw;
    height:100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}
.screenSplash div{
    background-color: white;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
}
.screenSplash div img{
    width:100%;
    max-width:700px;
}
.screenSplash div h1{
    margin:0px;
}
.screenPage{
    max-width: 1100px;
    margin: 0px auto;
    padding: 30px 0 25px 0;
}
.screenPage>div{
    background-color: white;
    border-radius: 10px;
    padding: 20px;
}
.screenPage>div img.headerLogo{
    width:150px;
    max-width:150px;
}
.screenPage>div h1{
    margin:0px;
}
a i.fa{
    margin-left:5px;
}
.gs_circle {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    box-shadow: 0px 0px 1px 1px #0000001a;
    background-color: #23d539;
    font-size: 32pt;
    color: white;
}
.center {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
/*Pulse animation*/
.pulse {
  animation: pulse-animation 2s infinite;
}

@keyframes pulse-animation {
  0% {
    box-shadow: 0 0 0 0px rgba(0, 0, 0, 0.2);
  }
  100% {
    box-shadow: 0 0 0 20px rgba(0, 0, 0, 0);
  }
}