body, html {
    margin: 0;
    padding: 0;
}
body {
    height: 100dvh;
    background: linear-gradient(rgb(63, 137, 211), #101427);
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.mainlogo {
    width: 100px;
}
.logocontainer {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-top: 100px;
}
.logotext {
    font-family: "Nunito";
    font-size: 55px;
    font-weight: 900;
    margin: 0;
}
.main {
    font-family: "Nunito";
    font-size: 35px;
    font-weight: 700;
    margin: 0;
    margin-top: 15px;
}
.desc {
    font-family: "Nunito";
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    max-width: 600px;
    text-align: center;
    margin-top: 15px;
}
:root {
    --paper-border-radius: 8px;
    --paper-uigap: 10px;
    --paper-uigap-half: calc(var(--paper-uigap) / 2);
}

.PaperButton {
    font-family: 'Nunito Sans';
    box-sizing: border-box;
    --foreground: #4099ff;
    --background: #126FE1;
    --transformSize: 4px;
    --hoverOffset: -1px;
    background: var(--foreground);
    padding: 10px 28px;
    color: white;
    font-size: 20px;
    border: none;
    border-radius: 10px;
    font-weight: 500;
    cursor: pointer;
    transition: transform 0.15s, box-shadow 0.15s, opacity 0.2s;
    will-change: transform, box-shadow, opacity;
    margin-top: 15px;
    display: flex;
    align-items: center;
    gap: 5px;
    padding-left: 24px;
    text-decoration: none !important;
}
.PaperButton.effect {
    box-shadow: var(--transformSize) var(--transformSize) 0 #126FE1;
}
.PaperButton.effect:hover {
    transform: translateX(var(--hoverOffset)) translateY(var(--hoverOffset));
    box-shadow:
        calc(var(--transformSize) - var(--hoverOffset))
        calc(var(--transformSize) - var(--hoverOffset))
        0
        #126FE1;
    opacity: 0.9;
}
.PaperButton.effect:active {
    transform: translateX(var(--transformSize)) translateY(var(--transformSize));
    box-shadow: 0 0 0 #126FE1;
}
.PaperButton:not(.effect):hover {
    opacity: 0.8;
}
.PaperButton:not(.effect):active {
    transform: scale(0.95);
    opacity: 1;
}
.icon {
    font-family: "Material Symbols Rounded";
}

.footer {
    font-family: "Nunito";
    font-size: 14px;
    font-weight: 400;
    margin: 0;
    max-width: 600px;
    text-align: center;
    margin-top: 35px;
    color: rgba(255,255,255,0.75);
}
a {
    color: inherit;
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}