/* Styling for the body of the webpage */
body {
    height: 100%;
    color: hsla(0, 0%, 100%, 0.85); 
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url(img.jpg);
    background-repeat: no-repeat;
    background-size: cover;
}

/* Styling for the logo element */
.logo {
    position: absolute;
    top: 0;
    left: 0;
    aspect-ratio: 1/2;
    width: 40px;
}

/* Styling for level 1 headings */
h1 {
    text-align: center;
    font-size: 40px;
    color: mintcream;
    text-transform: uppercase;
    font-family: 'Rubik Wet Paint', cursive;
    font-weight: bold;
    text-shadow: 2px 2px rgb(197, 31, 31);
}

/* Styling for form groups */
.form-group {
    text-align: center;
}

/* Styling for input elements */
input {
    width: 200px;
    height: 20px;
}

/* Styling for input elements in focus state */
input:focus {
    outline: none;
}

/* Styling for elements with class "java" */
.java {
    color: white;
    text-align: center;
    font-family: 'Courier New', Courier, monospace;
    line-height: .5;
}

/* Styling for image elements */
img {
    width: 120px;
    border-radius: 60px;
    text-align: center;
}

/* Styling for button elements */
.button {
    background-color: #36165a;
    border: none;
    color: white;
    padding: 15px 25px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    border-radius: 20px;
}

/* Styling for button elements in hover state */
.button:hover {
    background-color: #783db3;
    transition: all ease-in-out 0.3s;
    cursor: pointer;
}

/* Styling for the element with ID "search" */
#search {
    border-radius: 5px;
    width: 35; /* You might want to specify a unit like "35px" here */
    text-decoration: none;
    border: none;
    height: 25px;
}

/* Styling for the element with ID "result" */
#result {
    font-family: 'Rubik Wet Paint', cursive;
}

/* Styling for images within the element with ID "result" */
#result img {
    box-shadow: -7px 2px 8px black;
}

/* Styling for images within the element with ID "result" when hovered */
#result img:hover {
    border: 1px solid white;
}