html {
    min-height: 100vh;
    background: #3a9ddd;
    background: linear-gradient(180deg, #00cfff 0%, #000 100%);
    /* background-attachment: fixed; */
}

body {
    font-family: Tahoma, 'Segoe UI', Arial, sans-serif;
    width: 55%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 5vh;
}


.bg-img {
    pointer-events: none;
    position:fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1337;
}

.branch-img {
    position: fixed;
    top: 0;
    right: 0;
    width: 240px;
    height: 100vh;
    pointer-events: none;
    z-index: -1336;
    overflow: hidden;
    display: block;
    object-fit: contain;
    object-position: top right;
}


a {
    font-style: italic;
    color: black;
    text-decoration: dashed underline;
}

.sp-ul {
    list-style-type: none;
    /* margin: 0; */
    /* padding: 0; */
    padding-left: 10px;
}

ul {
    list-style-type: square;
    padding-left: 20px;
}

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

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

.spin {
    animation: spin-anim 3s linear infinite;
}

a:hover {
    background-color: white;
    opacity: 0.7;
}


.line {
    border-left: 2px solid rgba(0, 0, 0, 0.3);
    padding-left: 20px;
}

.block {
    margin: 0px;
    padding: 0px;
    margin-left: 30px;
    padding-left: 10px;
    margin-top: 8px;
    margin-bottom: 8px;
    display: none;
}

.block:target {
    display: block;
}

.smol-img {
    max-width: 100%;
    width: 500px;
    height: auto;
}

.image-link {
    color: inherit !important;
}
.image-link:hover {
    opacity: 1 !important;
    background-color: transparent !important;
}