#search-form-container {
    width: 500px;
}

.no-image {
    display: flex;
    height: 80px;
    align-items: center;
    justify-content: center;
}

@media (prefers-color-scheme: dark) {
    body {
        background-color: #1a202c;
        color: #f7fafc;
    }

    input[type="text"] {
        background-color: #2d3748;
        color: #f7fafc;
    }

    .result {
        background-color: #2d3748;
    }
}

@media (prefers-color-scheme: light) {
    body {
        background-color: rgb(243 244 246);
        color: #1a202c;
    }
}

.search-form-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.5s ease-in-out;
}

.search-form-container.active {
    top: 0;
    left: 0;
    transform: translate(0, 0);
}

.logo-text {
    transition: opacity 0.5s ease-in-out, height 0.5s ease-in-out, margin-bottom 0.5s ease-in-out;
}

.search-form-container.active .logo-text {
    opacity: 0;
    height: 0;
    margin-bottom: 0;
}

.example-links.active {
    display: none;
}

.lds-ring {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
}

.lds-ring div {
    box-sizing: border-box;
    display: block;
    position: absolute;
    width: 64px;
    height: 64px;
    margin: 8px;
    border: 8px solid #fff;
    border-radius: 50%;
    animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
    border-color: #fff transparent transparent transparent;
}

.lds-ring div:nth-child(1) {
    animation-delay: -0.45s;
}

.lds-ring div:nth-child(2) {
    animation-delay: -0.3s;
}

.lds-ring div:nth-child(3) {
    animation-delay: -0.15s;
}

@keyframes lds-ring {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}