body {
    font-family: "Raleway", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
    margin: 0;
    padding: 0;
}

.logo {
    margin: 0 auto;
    width: 156px;
    height: 156px;
    margin-top: -100px;
    border-radius: 20px;
    box-shadow: 0px 3px 20px rgba(0, 0, 0, 0.16);
}

.has-text-centered {
    text-align: center;
}

.button {
    color: #5c5c5c;
    background: #f7f7f7;
    border: #f7f7f7;
    padding: 12px;
    margin: 10px;
    border-radius: 15px;
    text-decoration: none;
}

.button:hover {
    background: #e3e3e3;
    cursor: pointer;
}

.button>span {
    margin-left: 8px;
}

h1 {
    color: #5c5c5c;
}

p {
    font-weight: 400;
    color: #5c5c5c;
}

p.msg {
    font-weight: 400;
    color: #5c5c5c;
    padding: 0 10px;
    font-weight: bold;
    display: block;
}

#main {
    display: none;
    margin-top: -75px;
}

/* Base styles */
button {
    font-family: "Raleway", sans-serif;
    font-weight: 600;
    padding: 10px 20px;
    border: none;
    border-radius: 10px;
    background-color: #f7f7f7;
    color: #5c5c5c;
    cursor: pointer;
}

/* Adjust button styles for smaller screens */
@media (max-width: 768px) {
    button {
        width: 100%;
        margin-bottom: 10px;
    }
}

a {
    all: unset;
}


/* Loading */

#loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    /* background-color: rgba(255, 255, 255, 0.7); */
    display: flex;
    justify-content: center;
    align-items: center;

    z-index: 9999;
}

.loader {
    border: 16px solid #f3f3f3;
    /* Light grey */
    border-top: 16px solid #ff065e;
    /* Blue */
    border-radius: 50%;
    width: 100px;
    height: 100px;
    animation: spin 2s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}