* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

main {
    height: 90vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

body {
    background-color: white;
}

button {
    border: none;
    background-color: transparent;
}

.timer * {
    font-size: 12rem;
    color: black;
    text-shadow: 10px 10px white;
}

.timer {
    display: flex;
    justify-content: center;
    align-items: center;
}

.swap {
    display: flex;
    justify-content: center;
    align-items: center;
}

.swap * {
    margin: 0 10px;
    width: 80px;
    height: 80px;
}

.standard {
    font-family: "Outfit";
}

.x {
    position: absolute;
    width: 25px;
    height: auto;
    top: 20px;
    right: 20px;
}

.lightbox {
    display: none;
    position: fixed;
    width: 500px;
    height: 400px;
    border-radius: 30px;
    top: 50%;
    left: 50%;
    background-color: rgba(240,240,240,40%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transform: translate(-50%, -50%);
    padding: 10px;
    border: solid;
    border-color: rgba(1,1,1,10%);
    border-width: 4px;
}

.lightbox * {
    margin: 5px;
}

.scrollable {
    overflow: scroll;
}

.lb-bottom {
    background-color: rgba(1, 1, 1, 15%);
    backdrop-filter: blur(50px);
    -webkit-backdrop-filter: blur(50px);
    border-radius: 20px;
    height: 300px;
    padding: 10px;
    border: none;
}

input {
    width: 20px;
    margin: 0 !important;
}

.set-btn {
    background-color: rgba(1, 1, 1, 10%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 5px;
    border-radius: 10px;
}

p {
    display: inline;
    margin: 0 !important;
}

a {
    font-weight: 800;
    color: black;
}

.button-cont {
    display: flex;
    justify-content: space-between;
}

.button-cont button {
    display: inline;
    margin: 10px;
}

.button-cont *, .swap * {
    background-color: transparent;
    backdrop-filter: blur(60px);
    -webkit-backdrop-filter: blur(60px);
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    border-radius: 50%;
}

.button-cont * {
    width: 70px;
    height: 70px;
}

.page-btn {
    position: fixed;
    right: 10px;
    top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    backdrop-filter: blur(60px);
    -webkit-backdrop-filter: blur(60px);
    width: 75px;
    height: 75px;
    border-radius: calc((75 / 2) * 1px);
    transition: width 1s ease-in-out;
}

#hide {
    max-width: 0%;
    display: inline-block;
    vertical-align: bottom;
    overflow: hidden;
    white-space: nowrap;
    transition: max-width 1s ease-in-out;
    margin: 0;
    font-size: 2rem;
}

.page-btn:hover #hide {
    max-width: 100%;
}

.page-btn:hover {
    width: 230px;
    border-radius: calc((75 / 2) * 1px);
}

footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0;
    z-index: 1000;
}

.donation-cont {
    display: flex;
    justify-content: space-between;
    background-color: transparent;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 10px;
}