@import url('open.iconic/font/css/open-iconic-bootstrap.min.css');
/* Glowing effect */
.glow {
    color: #ffffff;
    
    text-shadow: 0 0 5px #ffffff, /* White for a bright central glow */
    0 0 10px #5a8ca8, /* Slate blue-gray for primary glow */
    0 0 15px #457286, /* Darker slate blue for depth */
    0 0 20px #345b6c, /* Deep blue-gray tone */
    0 0 25px #5a8ca8, /* Reinforce primary glow */
    0 0 30px #457286; /* Additional depth with dark blue */
    display: inline-block;
}

/* Individual letter animation */
.spin-in {
    display: inline-block;
    opacity: 0;
    transform: rotate(360deg) scale(0.5);
    animation: spinIn 0.8s ease forwards;
}

/* Keyframes for spinning and glowing */
@keyframes spinIn {
    0% {
        opacity: 0;
        transform: rotate(360deg) scale(0.5);
        text-shadow: none;
    }

    100% {
        opacity: 1;
        transform: rotate(0deg) scale(1);
    }
}


html, body {
    font-family: 'Josefin Slab', Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-size:20px;
}
 

.valid.modified:not([type=checkbox]) {
    outline: 1px solid #26b050;
}

.invalid {
    outline: 1px solid red;
}

.validation-message {
    color: red;
}

.button-link {
    text-decoration: unset;
}

#blazor-error-ui {
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

#blazor-error-ui .dismiss {
    cursor: pointer;
    position: absolute;
    right: 0.75rem;
    top: 0.5rem;
}
/* Styling for the content section */
.section {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
    text-align: center;
    padding: 1rem;
    overflow: hidden;
    word-wrap: break-word;
    position: relative;
    z-index: 1;
    font-size: 1.5rem;
}

/* Feature list for responsive layout with Bootstrap grid */
.feature-list {
    width: 100%;
    max-width: 1200px;
}

/* Map styling to make it full-screen and beneath other content */
#map {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -2;
}
#sketch {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -2;
}
.text-outline {
    text-shadow: -1px -1px 0 #000, /* Top left shadow */
    1px -1px 0 #000, /* Top right shadow */
    -1px 1px 0 #000, /* Bottom left shadow */
    1px 1px 0 #000; /* Bottom right shadow */
}