* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Armata", sans-serif;
    font-weight: 400;
    font-style: normal;
    list-style: none;
    text-decoration: none;
    box-sizing: border-box;
}

:root {
    --color-1: #EB4CAE;
    --color-2: #8754DB;
    --color-3: #33B0CD;
    --color-4: #101010e7;
}

body {
    display: flex;
    flex-direction: column;
    background-color:var(--color-4);  

}

header {
    position: sticky;
    background-color: var(--color-4);  
}
  
nav {
    display: flex;
    box-shadow: -1px 1px 3px 0px #c4c4c4;
    padding: 5px 0;
}
  
.logo-nav {
    margin-left: 15px;
    width: 75px;
    height: auto;
}

.banner-text h1{
    display: flex;
    justify-content: center;
    text-align: center;
    padding: 50px 475px ;
    font-family: 'Anton';
    font-style: normal;
    font-weight: 400;
    color: var(--color-1);
}

#searchForm {
    display: flex;
    justify-content: center;
    padding: 20px 50px;
}

input[type=search] {
    width:300px;
    border: 2px solid var(--color-2);
    border-radius: 3px 0px 0px 3px;
    padding: 0 1.1rem;
}

input[type=submit] {
    width:60px;
    height: 50px;
    border-style: none;
    cursor:pointer;
    border-radius: 0px 10px 10px 0px;
    background-color: var(--color-3);
    font-weight: bold;
    }

input[type=submit]:hover {
    background-color: #33b1cdb2;
}
      
.results {
    margin-top: 20px;
}

.results h2 {
    font-family: 'Anton';
    font-style: normal;
    font-weight: 400;
}

.image-container {
    display: grid;
    grid-template-columns: repeat(2, minmax(150px, 1fr));
    justify-items: center;
    gap: 20px; 
    padding: 30px 30px;
}

.show-item {
    text-align: center;
    padding: 10px;
    border-radius: 8px;
    background-color: #8854db1e;
}