@import url('https://fonts.googleapis.com/css2?family=Style+Script&display=swap');

html {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Style Script', cursive;
    background-color: whitesmoke;
}

h1 {
    text-align: center;
    margin-top: 25px;
    margin-bottom: 5px;
    font-size: 2rem;
    letter-spacing: 1px;
}

h2 {
    text-align: center;
    margin-top: 5px;
    margin-bottom: 15px;
    font-size: 1.3rem;
    letter-spacing: 1px;
}

/* Loader */
.loader {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.8);

}

.loader img {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Image Container */

.image-container {
    margin: 10px 30%;   
}

.image-container img {
    width: 100%;
    margin-top: 10px;
}

button {
    cursor: pointer;
    font-size: 1.2rem;
    height: 2.5rem;
    border: none;
    border-radius: 10px;
    color: white;
    background-color: #333;
    outline: none;
    padding: 0.5rem 1.8rem;
    box-shadow: 0 0.3rem rgba(121, 121, 121, 0.65);
    margin-left: 20px;
    position: fixed;
}

button:hover {
    filter: brightness(110%);
}

button:active {
    transform: translate(0, 0.3rem);
    box-shadow: 0 0.1rem rgba(255, 255, 255, 0.65);
}

@media screen and (max-width: 600px) {
    hi {
        font-size: 15px;
    }

    .image-container {
        margin: 10px;
    }
}