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

html {
    box-sizing: border-box;
}

body{
    margin: 0;
    /* min-height: 100vh; */
    font-family: 'Cinzel', serif;
    background-color: whitesmoke;

    /* /* brick wall  */
    /* background-color: #f7f7f7;
    background-image: url("data:image/svg+xml,%3Csvg width='42' height='44' viewBox='0 0 42 44' xmlns='http://www.w3.org/2000/svg'%3E%3Cg id='Page-1' fill='none' fill-rule='evenodd'%3E%3Cg id='brick-wall' fill='%23434347' fill-opacity='0.05'%3E%3Cpath d='M0 0h42v44H0V0zm1 1h40v20H1V1zM0 23h20v20H0V23zm22 0h20v20H22V23z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); */

}

h1 {
    text-align: center;
    margin-top: 25px;
    margin-bottom: 25px;
    font-size:40px;
    /* text-decoration: overline; */
    border-top: 5px solid #000;
    border-bottom: 5px solid #000;

    letter-spacing: 5px;
}

/* loader */
.loader {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: 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: 1px;
}

#myBtn {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 30px;
    z-index: 99;
    font-size: 18px;
    border: none;
    outline: none;
    background-color: rgb(8, 8, 8);
    color: white;
    cursor: pointer;
    padding: 15px;
    border-radius: 4px;
  }

#myBtn:hover {
background-color: #555;
}


/* media query for large smartphone */
@media screen and (max-width: 600px) {
    h1{
        font-size: 40px;
    }

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