* {
    margin: 0;
    padding: 0;
    font-family: Verdana, Arial, sans-serif;
    outline: none;
}

::selection {
    background-color: rgba(0, 0, 0, 0.67);
    color: white;
}

body {
    height: 100vh;
    width: 100vw;
    overflow-x: hidden;
    /* background-size: 100% 100%; */
    background-position: center center;
    background-image: linear-gradient(35deg, rgb(0, 110, 255), rgb(0, 217, 255));
    background-color: #008dff;
    /* background-image: linear-gradient(0deg, #87bfff4c 0%, #8A6C6C00 50%),repeating-conic-gradient(from 180deg at 50% 67%, #000000FF 0%, rgb(123, 184, 255) 100%); */
    background-size: cover;
    background-repeat: no-repeat;

}

nav {
    background-color: #fffffff1;
    width: 100vw;
    height: 8vh;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    box-shadow: 0 0 13px #00000042;
    clip-path: inset(0px -10px -10px -10px);
    padding: 0 2vw;
    box-sizing: border-box;
}

.navContent {
    font-size: 1.55rem;
    color: #007be0;
    text-decoration: none;
    padding: 2em;
}

.navContent:hover {
    color: #001325;
    border-radius: 10px;
    transition: color 1s ease;
}

.banner {
    height: max(20px, 2vh);
    width: 100vw;
    background: #181d21;
    display: flex;
}

.bannerContent {
    margin: auto;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.8rem;
}

h1 {
    font-weight: normal;
    text-align: center;
    color: #f3f3f3;
    font-size: min(9em, 13.5vw);
    font-family: Impact, 'Arial Narrow Bold', sans-serif;
    margin: .4em auto 0em;
}

.indexSubHeader {
    font-weight: normal;
    text-align: center;
    color: #f3f3f3;
    font-size: min(4.5em, 8vw);
    font-family: Impact, 'Arial Narrow Bold', sans-serif;
    margin: .4em auto -1em;
}

form {
    display: flex;
    justify-content: center;
    margin: 8em;
}

.query {
    height: 4rem;
    width: 30rem;
    box-sizing: border-box;
    margin: 0 1rem;
    padding: .5rem;
    font-family: Verdana, Arial, sans-serif;
    font-size: 1.1em;
    border-radius: 5px;
    background-color: rgb(255, 255, 255);
    border: none;
    box-shadow: inset 0 0 8px rgb(143, 143, 143);
}

.query::placeholder {
    font-family: Verdana, Arial, sans-serif;
}

.inputContainer {
    display: inline-block;
}

input[type=submit] {
    box-sizing: border-box;
    height: 4rem;
    width: 6rem;
    margin: 0 1rem;
    border-radius: 5px;
    background-color: #92caffb7;
    font-family: Verdana, Arial, sans-serif;
    font-size: 1.3em;
    border: none;
    color: #ffffff;
}

input[type=submit]:hover {
    background-color: #00000092;
    color: #fbfbfb;
    transition: all 1s;
}

h2 {
    margin: 5rem 10% 2rem;
    color: white;
    font-size: 2rem;
    width: 80%;
}

.resultsContainerSquared {
    width: 80%;
    margin: auto;
    height: fit-content;
    background-color: white;
    border-radius: 15px;
    box-sizing: border-box;
    padding: 6% auto;
    box-shadow: 0 0 25px rgb(90, 174, 223);
}

.resultsContainer {
    width: 90%;
    height: 8rem;
    margin: 5%;
    /* background-color: rgb(206, 206, 206); */
    box-sizing: border-box;
    display: flex;
    align-items: stretch;
}

.imageContainer {
    display: inline-block;
    height: 100%;
    width: fit-content;
    box-sizing: border-box;
}

.detailsContainer {
    display: inline-block;
    height: 100%;
    /* background: rgb(255, 255, 255); */
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

img {
    height: 100%;
    width: auto;
}

.itemTitle {
    font-weight: normal;
    font-size: 1.2rem;
}

.itemLink {
    text-decoration: none;
}

.itemLink:visited {
    color:rgb(0, 217, 255);
}

.itemPrice {
    font-weight: bold;
}

.aboutText {
    font-size: 2.75rem;
    margin: 1.5rem 10%;
    width: 80%;
    color: white;
    text-align: center;
}

.aboutH2 {
    font-size: 4rem;
    text-align: center;
}

.signature {
    position: fixed;
    bottom: 10px;
    right: 10px;
    font-size: 17px;
    color: white;
    font-weight: bold;
}