html {
    font-size: 15px;
}

html,
body {
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    position: relative;
    background-image: url("/static/images/BackGround.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

body::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.75);
    z-index: -1;
}

#slideshow {
    position: relative;
    justify-content: center;
    align-items: center;
    width: 380px;
    height: 380px;
}

.fade-in {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 2.8s;
}

.fade-in.active {
    opacity: 1;
}

.img-center {
    display: flex;
    justify-content: center;
    text-align: center;
    white-space: nowrap;
    margin-bottom: -10px;
    transition: transform 1.3s ease;
}

.img-center:hover {
    transform: scale(1.1);
}

.content-center {
    display: flex;
    justify-content: center;
    text-align: center;
    white-space: nowrap;
    margin-bottom: 20px;
    transition: transform 1.3s ease;
}

.content-center:hover {
    transform: scale(1.1);
}

.readonly {
    pointer-events: none;
    user-select: none;
}

h1 {
    user-select: none;
    color: #4389f3d6;
    font-family: Helvetica;
    margin: 0;
    padding: 0;
    font-size: 3.5rem;
    /* letter-spacing: -0.1rem; */
    position: relative;
    margin-bottom: 10px;
    transition: transform 2s ease;
}

h3 {
    color: #2f8dffdf;
    font-family: Helvetica;
    margin: 0;
    padding: 0;
    font-size: 1.5rem;
    position: relative;
    transition: transform 1.3s ease;
}

h4 {
    color: #0061fee2;
    font-family: Helvetica;
    margin: 0;
    margin-bottom: 5px;
    padding: 0;
    font-size: 1.4rem;
    position: relative;
    transition: transform 1.3s ease;
}

h1::after {
    content: attr(data-spotlight);
    color: #4389f3d6;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-clip-path: ellipse(100px 100px at 0% 50%);
    clip-path: ellipse(100px 100px at 0% 50%);
    user-select: none;
    animation: spotlight 8s linear infinite;
    transition: transform 2s ease;
}

h1:hover {
    transform: scale(1.2);
}

h1::after:hover {
    transform: scale(1.2);
}

@keyframes spotlight {
    0% {
        -webkit-clip-path: ellipse(100px 100px at 0% 50%);
        clip-path: ellipse(100px 100px at 0% 50%);
        color: #4389f3d6;
    }

    50% {
        -webkit-clip-path: ellipse(100px 100px at 100% 50%);
        clip-path: ellipse(100px 100px at 100% 50%);
        color: #0008ff;
    }

    100% {
        -webkit-clip-path: ellipse(100px 100px at 0% 50%);
        clip-path: ellipse(100px 100px at 0% 50%);
        color: #4389f3d6;
    }
}

.button-center {
    font-family: Helvetica;
    text-align: center;
    white-space: nowrap;
    transition: transform 1.3s ease;
}

.Bond-Button {
    display: inline-block;
    margin: 10px;
    width: 60px;
    padding: 15px 20px;
    background-color: #2fd2ffdf;
    color: white;
    text-decoration: none;
    border-radius: 10px;
    cursor: pointer;
    font-size: 1.2rem;
    transition: transform 0.7s ease;
}

.Bond-Button:hover {
    border: #2f8dffdf solid 3px;
    color: #2f8dffdf;
    transform: scale(1);
}