.minecraftServerList
{
    
    user-select: none;
    background-color: rgb(255, 255, 255) ;
    box-shadow: 2px 2px rgb(151, 151, 151);
    border-radius: 20px;
    position: relative;
    top: 20px;
    left: 30px;
    height: 210px;
    display: inline-block;
    width: fit-content;
    padding: 10px;
    -webkit-transition: background-color 200ms linear;
    -ms-transition: background-color 200ms linear;
    transition: scale 0.2s ease, top 0.3s ease ;
    scale: 1;
    cursor: pointer;
    

}
.minecraftServerList:hover
{
    scale: 1.1;
}
.minecraftServerList:active
{
    background-color: #168C42;
    -webkit-transition: background-color 200ms linear;
    -ms-transition: background-color 200ms linear;
    transition: background-color 200ms linear;
    scale: 0.98;

}

.pixelify-sans {
    font-family: "Pixelify Sans", serif;
    font-optical-sizing: auto;
  }
.Topbar{
    position:absolute;
    top: 0px;
    right: 0px;
    z-index: -100;
    width: 100%;
    height:200px;
    background-color: #168C42;
}
.inputfield
{
    background-color: rgb(255, 255, 255);
    border-radius: 15px;
    height: 35px;
    font-size: 18px;
    color: rgb(62, 62, 62);
    font-family:"Pixelify Sans", serif;
    outline: none;
    outline-width: 0px;
    border: none;
    
}
.onlinetext{
    position: absolute;
    right: 0px;
    top: 0px;
    font-family:"Pixelify Sans", serif;
    color: rgb(152, 214, 157);
}
.PageButton
{
    font-family:"Pixelify Sans", serif;
    font-size: 20px;
    bottom :auto;
    left: 390px;
    position: absolute;
    display: inline-block;
    width: fit-content;
    padding: 10px;
    height: fit-content;
    background-color: #107033;
    font-weight: 700;
    color:#ffffff;
    border-radius: 15px;
    user-select: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    scale: 1;
    transition: scale 0.1s ease, background-colour 0.1s ease;
}
.PageButton:hover
{
    scale: 1.07;
    background-color: #0F3B1F;
    outline-color:#0F3B1F ;
    box-shadow: 2;
}
.PageButton:active
{
    scale: 0.95;
}
.toggle
{
    height: 20px;
    width: 20px;
    accent-color: #0F3B1F;
    
    
}

.greenDot
{
    height: 15px;
    width: 15px;
    background-color: #15be53;
    border-radius: 100%;
    position: absolute;
    top: 20px;
    right: 20px;
}
.loader {
    border: 16px solid #f3f3f3; /* Light grey */
    border-top: 16px solid #15be53; /* Blue */
    border-radius: 50%;
    width: 30px;
    height: 30px;
    translate: 200px 40px;
    animation: spin 1s ease infinite;
  }
  
  @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }