@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@600&display=swap');
*{
    color: #000000;
    font-family: "Poppins", sans-serif;
}
body{
    width: 100vw;
    height: 100vh;
    margin: 0;
    padding: 10vh 18% 0 18%;
    box-sizing: border-box;
    background-color: #f8f8f8;
    cursor: default;
    overflow-x: hidden;
}
h1{
    margin-top: 5%;
    font-size: 48px;
    font-weight: 800;
    line-height: 48px;
}
h2{
    margin-top: 3%;
    color: limegreen;
}
h1, h2, h3, p {
    cursor: text;
}
a{
    text-decoration: none;
    color: limegreen;
    font-weight: bold;
}
.switch{
    display: inline-block;
    padding-left: 3.75px;
    width: 100%;
    height: 60px;
    text-align: center;
    background-color: #eeeeee;
    border-radius: 20px;
    box-shadow: 0px 0px 12px #cccccc;
}
#nebcraft{
    max-width: 300px;
}
#nebtown{
    margin: 15px 0 0 15px;
    max-width: 150px;
}
.tabbtn{
    height: 45px;
    margin-top: 7.5px;
    margin-right: 3.75px;
    font-size: 16px;
    color: #000000;
    background-color: transparent;
    border-radius: 16px;
    border: none;
    outline: none;
    cursor: pointer;
}
#nebcraft .tabbtn{
    width: calc(50% - 10px);
}
#nebtown .tabbtn{
    width: calc(100% - 10px);
}
.switch #selected{
    color: #fff;
    background-color: limegreen;
}
.mainbtn{
    transition: 0.3s ease;
    width: 220px;
    height: 60px;
    border-radius: 20px;
    margin-top: 2%;
    margin-right: 1.5vw;
    color: #ffffff;
    background-color: limegreen;
    font-size: 16px;
    border: none;
    outline: none;
    cursor: pointer;
}
.mainbtn:hover{
    box-shadow: 0px 0px 12px limegreen;
}
.mainbtn:hover .arrows{
    transition: 0.3s ease;
    margin-left: 6px;
}
.altbtn{
    margin: 15px 1.5vw 0 0;
    background-color: lightseagreen;
}
.altbtn:hover{
    box-shadow: 0px 0px 12px lightseagreen;
}
.arrows{
    color: #ffffff;
}
::selection{
    background-color: limegreen;
    color: #000000;
}
@media (prefers-color-scheme: dark) {
    *{
        color: #ffffff;
    }
    body{
        background-color: #222;
    }
    .switch{
        background-color: #333333;
        box-shadow: 0px 0px 12px #333333;
    }
    .tabbtn{
        color: #ffffff;
    }
}
@media screen and (max-width: 735px) {
    h1{
        margin-top: 18%;
    }
    #nebtown{
        margin-left: 0;
        max-width: 300px;
    }
    .altbtn{
        margin-left: 0;
    }
}