*{
    text-decoration: none;
    margin: 0;
    padding: 0;
}

html{
    scroll-padding-top: 0px;
    background-color: #959595;
}

body {
    margin: 0;
    padding: 0;
}

#loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 9999;
    background-color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    overflow: hidden;
}

#loadingicon {
    display: flex;
    justify-content: center;
    align-items: center;
}

#blocker {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 9997;
    background-color: white;
    display: flex;
    justify-content: center;
    align-items: center;
}

.navbar{
    z-index: 9998;
    position: sticky;
    top: 0;
    background-color: white;
    font-family: Verdana;
    padding-right: 25px;
    padding-left: 25px;
}

.navdiv{
    display:flex;
    align-items: center;
    justify-content: space-between;
    gap: 5%;
}

li{
    list-style: none;
    display: inline-block;

}

li a{
    color: black;
    font-size: 20px;
    margin-right: 25px;
}

.hover-text {
  color: black;
}

.hover-text:hover {
  color: #db181e;
}

section {
    height: 100vh;
    scroll-snap-align: start;
/*    scroll-snap-stop: normal; */

}

p {
    color: black;
}

.foot {
    display: flex;
    position: fixed;
    font-family: Verdana;
    font-size: 8px;
    bottom: 0;
    padding-left: 5px;
}

#drawcount, #clonedcount, #bornecount, #puntcount {
    text-align: center;
    font-variant-numeric: tabular-nums;
}

h1 {
    padding-top: 160px;
    display: block;
    justify-content: center;
    align-items: center;
    font-family: Verdana;
    color: white;
    font-size: 20vw;
    text-shadow: 4px 4px 4px rgba(0,0,0,0.5);
}

h2 {
    padding-top: 20px;
    padding-left: 10px;
    padding-right: 10px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: Verdana;
    color: white;
    font-size: 50px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    overflow-wrap: break-word;
}

h3 {
    display: flex;
    justify-content: left;
    font-family: Verdana;
    color: black;
    font-size: 40px;
}

.spacer {
    margin-bottom: 30px;
}

.panel {
    margin-top: 50px;
    display: flex;
    background: white;
    width: fit-content;
    min-height: 100px;
    min-width: 260px;
    padding-left: 38px;
    padding-right: 10px;
    max-width: 95%;
    margin: 0 auto;
    border-radius: 15px;
    font-family: Verdana;
    color: black;
    justify-content: left;
    align-items: center;
    gap: 20px;
    
    overflow-wrap: break-word;
}

.panel:hover {
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);
}

.textpanel {
    display: flex;
    background: white;
    width: fit-content;
    min-height: 100px;
    min-width: 100px;
    padding-left: 20px;
    padding-right: 20px;
    max-width: 95%;
    margin: 0 auto;
    font-family: Verdana;
    color: black;
    justify-content: center;
    align-items: center;
    gap: 20px;
    overflow-wrap: break-word;
}

.displaybox {
    padding-left: 10%;
    padding-right: 10%;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

.card {
    background: white;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
    transition: 0.2s;
    width: 22rem;
    height: 30rem;
    padding-bottom: 34px;
    overflow-wrap: break-word;
}

.card:hover {
    box-shadow: 0 16px 32px 0 rgba(0,0,0,0.2);
}

.container {
    padding: 2px 10px;
}

.draws {
    height: 100vh;
    background-image: url("assets/pactofnegation.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom;
}

.cloned {
    height: 100vh;
    background-image: url("assets/mirrormade.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom;
}

.borne {
    height: 100vh;
    background-image: url("assets/borneuponawind.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom;
}

.punt {
    height: 100vh;
    background-image: url("assets/underworldbreach.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom;
}


.bottom {
    display: block;
    position: relative;
    align-items: center;
    text-align: center;
    transform: translateY(-120%);
}

.arrow {
    position: relative;
}

.credit {
    position: relative;
    display: flex;
    padding-left: 12px;
    justify-content: left;
    align-items: center;
    font-family: Verdana;
    color: white;
    font-size: 20px;
}