@font-face {
    font-family: "Timer";
    src: url("../fonts/Montserrat/Montserrat-VariableFont_wght.ttf");
}
@font-face {
    font-family: "text";
    src: url("../fonts/Rubik/Rubik-VariableFont_wght.ttf");
}
@font-face {
    font-family: "Bebas_Neue";
    src: url("../fonts/Bebas_Neue/BebasNeue-Regular.ttf");
}

*
{
    padding: 0;
    margin: 0;
    transition: scale 0.5s;
    overflow-x: hidden;
}
body {
    margin: 0px;
    width: 100%;
    background-color: black;
}
/* big text */
#text
{
    font-size: 120px;
    font-family: "Bebas Neue",sans-serif;
    color: white;
    height: fit-content;
    width: fit-content;
    position: relative;
    left: 100px;
    top: 40%;
    transform: translate(0,-50%);
    border-left:rgb(236, 236, 236) solid 4px ;
    padding: 10px;
    transition: opacity 1s;

    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
#text span, form span
{
    color: rgb(204,65,43);
}


/* Share icon */
#share
{
    width: 60px;
    position: fixed;
    right: 10px;
    top: 10px;
}
#share:hover
{
    scale: 1.1;
}
#myInput
{
    display: none;
}


.days, .hours, .minutes, .seconds
{
    font-size: 100px;
    margin: 0;
    font-family: "Timer";
    color: rgb(188, 188, 188);
    font-weight: 500;

    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.timetext
{
    color: rgba(255, 255, 255, 0.533);
    font-family: "text";
    font-size: 30px;
    font-weight: 300;
    margin-top: -20px;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
section p 
{
    font-family: "text";
    font-size: 30px;
}
.timesection
{
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    width: 130px;
}
#bigone
{
    display: flex;
    flex-direction: column;
    align-items: center;
    width: fit-content;
    position: relative;
    right: 15vw;
    top: 40%;
    transform: translate(0, -50%);
}
#smallone
{
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
}



/* extra info stuff */
#info
{
    display:flex;
    flex-direction: row;
}
#info section
{
    font-family: "Bebas Neue",sans-serif;
    width: fit-content;
    border-left: black solid 2px;
    padding: 6px;
    padding-right: 10px;
    margin-bottom: 10px ;
    color: rgb(188, 188, 188);
    font-size: 15px;
}

textarea:focus, input:focus{
    outline: none;
}

/* Message */
/* The snackbar - position it at the bottom and in the middle of the screen */
#snackbar {
    visibility: hidden; /* Hidden by default. Visible on click */
    min-width: 250px; /* Set a default minimum width */
    background-color: #333; /* Black background color */
    color: #fff; /* White text color */
    text-align: center; /* Centered text */
    border-radius: 2px; /* Rounded borders */
    padding: 16px; /* Padding */
    position: fixed; /* Sit on top of the screen */
    z-index: 999; /* Add a z-index if needed */
    left: 50%; /* Center the snackbar */
    transform: translate(-50%, 0);
    bottom: 30px; /* 30px from the bottom */
    font-size: 30px;
  }
  #snackbar span
  {
    color: rgb(255, 0, 0);
  }
  /* Show the snackbar when clicking on a button (class added with JavaScript) */
  #snackbar.show {
    visibility: visible; /* Show the snackbar */
    /* Add animation: Take 0.5 seconds to fade in and out the snackbar.
    However, delay the fade out process for 2.5 seconds */
    -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
    animation: fadein 0.5s, fadeout 0.5s 2.5s;
  }
  
  /* Animations to fade the snackbar in and out */
  @-webkit-keyframes fadein {
    from {bottom: 0; opacity: 0;}
    to {bottom: 30px; opacity: 1;}
  }
  
  @keyframes fadein {
    from {bottom: 0; opacity: 0;}
    to {bottom: 30px; opacity: 1;}
  }
  
  @-webkit-keyframes fadeout {
    from {bottom: 30px; opacity: 1;}
    to {bottom: 0; opacity: 0;}
  }
  
  @keyframes fadeout {
    from {bottom: 30px; opacity: 1;}
    to {bottom: 0; opacity: 0;}
  }




/* select css */


.upperDiv
{
    transition: filter 0.1s ease;
    background:linear-gradient(rgba(0, 0, 0, 0.5),rgba(0, 0, 0, 0.5)),url("../images/background.png");
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: cover;
    height: 100vh;
    display: flex;
    align-items: flex-start;
    justify-content: space-between
}


@keyframes glowing {
    0% {
        box-shadow: 0 0 5px black;
    }
    50% {
        box-shadow: 0 0 20px black;
    }
    100% {
        box-shadow: 0 0 5px black;
    }
}
@media only screen and (max-width: 1000px) {
    #feedback-question {
        top: 20px;
        left: -1000px;
        transition: left 1s;
        font-size: 15px;
        padding: 10px;
    }
    #feedback-question p{
        width: 30vw;
    }
    /* big text */
    #text
    {
        overflow: hidden;
        font-size: 90px;
        left: 0%;
        top: 0;
        margin-top: 50px;
        transform: translate(0%, 0%);
    }
    .upperDiv{
        flex-direction: column;
        justify-content: space-evenly;
        align-items: center;
    }
    /* timer and stuff */
    #bigone
    {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        position: relative;
        left: 0%;
        right: 0;
        top: 0%;
        transform: translate(0%, 0%);
        height: fit-content;
    }

    .days, .hours, .minutes, .seconds
    {
        font-size: 80px;
    }
    section p, .timetext
    {
        font-size: 25px;
    }
    .timesection
    {
        padding: 0px;
    }
    #info
    {
        display:flex;
        flex-direction: row;
    }
    /* snackbar */
    #snackbar {
        font-size: 20px !important;
    }

    /* Bottom div */
    .container-moreinfo {
        flex-direction: column-reverse !important;
        align-items: center;
    }
    .info-container, .container-moreinfo-sort-down {
        max-width: none !important;
        margin: 0px;
        margin-top: 50px;
    }
    .responsive{
        display: flex;
        flex-direction: column;
        width: 100%;
    }
    .info-container{
        min-width: unset;
        padding: 10px;
        width: calc(100% - 20px);
    }
    .updates, .news {
        height: 400px;
    }
    .wipeInfoText {
        font-size: 20px;
    }
    .title {
        font-size: 40px;
    }
    .main-title {
        display: none;
    }
    .updates-containers {
        width: calc(100% - 20px);
    }


    /* SERVERS */
    .serverDiv h2 span {
        width: 70%;
    }
    #servers {
        height: 500px;
    }
    .custom-wipe {
        width: calc(100% - 20px);
    }
    .serverDiv {
        height: 110px;
        width: 93%;
    }




    /* FORM */
    form h2
    {
        font-size: 20px;
    }
    form
    {
        width: 90vw;
    }
    form .button{
        font-size: 13px !important;
    }




    .topTimer{
        display: none;
    }
}
@media only screen and (max-height: 700px) {
    #text
    {
        font-size: 70px;
    }
}
@media only screen and (max-height: 600px) {
    #text
    {
        font-size: 50px;
    }
}