body {
    display: flex;
    flex-direction: column;
    height: 90vh !important;
}

main {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 30px;
    flex: 1;
}

.header-title {
    font-size: 25px;
    font-weight: 600;
    font-family: sans-serif;
}

.search-name {
    font-size: 45px;
    font-weight: 600;
}

.code-start-container {
    width: 40vw;
    background-color: rgb(55, 55, 55);
    padding: 20px 10px 20px 23px;
    border-radius: 9px;
    color: rgb(255, 255, 255);
    position: relative;
}

.javascript-container {
    margin-top: 20px;
}

.javascript-image {
    position: absolute;
    top: -14px;
    left: -24px;
}

.assets-image {
    position: absolute;
    top: -14px;
    right: -20px;
}

.javascript-image img,
.assets-image img{
    height: 40px;
    width: auto;
    border-radius: 3px;
}

#exampleSearch,
#assetExampleSearch {
    font-weight: 600;
    color: var(--link-color);
    transition: color 0.3s;
}

#exampleSearch:hover,
#assetExampleSearch:hover{
    cursor: pointer;
    color: color-mix(in srgb, var(--link-color) 85%, white);
}

@media only screen and (max-width: 780px) {
    .search-name {
        font-size: 35px;
    }

    .code-start-container {
        width: 70vw;
    }
}