* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    width: 100vw;
    min-height: auto;
    background-color: rgb(3, 3, 48);
    list-style: none;
}

footer {
    width: 100vw;
    height: 60px;
    background-color: rgb(9, 3, 43);
    border-top: 3px solid blue;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    bottom: 0;

}

a {
    color: white;
    font-family:'Courier New', Courier, monospace;
    text-decoration: none;
    margin: 10px;
}

a:hover {
    text-decoration: underline;
}

#searchbar {
    width: 23%;
    text-align: center;
    border-radius: 5px;
    outline: none;
    cursor: pointer;
}

.main-frame {
    width: 90vw;
    height: auto;
    border: 2px solid blue;
    margin: auto;
    margin-top: 10px;
    border-radius: 12px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

h1 {
    margin-top: 10px;
    color: white;
    font-family: 'Courier New', Courier, monospace;
    text-align: center;
}

.image {
    width: 95%;
    height: 95%;
    margin: auto;
    border-radius: 12px;
    image-rendering: crisp-edges;
}

.image:hover {
    outline: 3px solid rgb(255, 255, 255);
    cursor: pointer;
}

.semi-down {
   border-top: 1px solid red;
   border-bottom: 1px solid red;
   width: 90vw;
   border-radius: 4px;
   margin: auto;
   margin-top: 20px;
   text-align: center;
   margin-bottom: 100px;
}

c {
    color: white;
    text-align: center;
}