body, html {
    background: linear-gradient(rgb(104, 37, 37) 50%, hsl(180, 1%, 15%) 100%);
    margin: 0;
    font-family: "Archivo Black", sans-serif;
    color: white;
    height: 100%;
}

#title {
    text-align: center;
    font-size: clamp(20px, 5vw, 40px);
    margin-top: 20px;
}

#searchContainer {
    text-align: center;
    margin-top: 5%;
}

.searchBox {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
    flex-wrap: wrap;
}

#textSearch {
    border: 2px solid transparent;
    width: 70%;
    max-width: 300px;
    height: 2.5em;
    padding-left: 0.8em;
    border-radius: 10px;
    transition: all 0.3s;
}

#textSearch:focus {
    border: 2px solid #4A9DEC;
    box-shadow: 0px 0px 7px rgba(74, 157, 236, 0.5);
}

#submitSearch {
    border: 2px solid transparent;
    padding: 0 15px;
    height: 2.5em;
    border-radius: 10px;
    transition: all 0.3s;
    cursor: pointer;
}

#submitSearch:hover {
    border: 2px solid #4A9DEC;
    box-shadow: 0px 0px 7px rgba(74, 157, 236, 0.5);
}

#image {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

#mainImage {
    max-width: 200px;
    width: 50%;
    height: auto;
    display: none;
}

#infoContainer {
    display: flex;
    justify-content: center;
    gap: 5vw;
    margin-top: 30px;
    flex-wrap: wrap;
    text-align: left;
}

.column {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.infoText {
    font-size: clamp(12px, 3vw, 20px);
}

span {
    color: rgb(214, 88, 88);
}

#mythical {
    color: rgb(201, 69, 227);
}

#legendary {
    color: rgb(227, 214, 69);
}

#privacy {
    position: fixed;
    bottom: 10px;
    right: 10px;
    font-size: clamp(12px, 2vw, 20px);
    text-decoration: underline;
}

@media (max-width: 600px) {
    #infoContainer {
        flex-direction: column;
        align-items: center;
    }

    .column {
        width: 90%;
        align-items: flex-start;
    }
}
