* {
    font-size: 30px;
    font-family: 'Titan One', cursive;
    line-height: 150%;
    color: black;
}


body {
    background-image: url('clouds.jpeg');
    background-size: cover;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 40px;
}

h1 {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 40px;
}

h2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 30px;
}

#header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}


#question_number {
    margin-left: 10%;
    display: flex;
    flex-direction: column;
    align-items: flex-end; 
    font-size: 20px;
}

#score {
    margin-right: 10%;
    display: flex;
    flex-direction: column;
    align-items: flex-end; 
    font-size: 20px;
}

input[type=guess] {
    padding: 10px 25px;
    margin: 15px 0;
    box-sizing: border-box;
  }

input[type=submit] {
    margin: 10px 0;
    box-sizing: border-box;
  }

img {
    border: 2px solid #555;
    object-fit: contain; 
}

#hold {
    letter-spacing: 4px;
}

#restart2 {
    margin-left: auto;
    margin-right: auto;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

@media (max-width: 740px) {
    /* Your mobile-specific styles here */

    #questionSelection {
        font: 20px; 
    }

    body {
        font-size: 18px; /* Adjusted font size for mobile */
        margin-left: 10%;
        margin-right: 10%;
    }

    h1 {
        font-size: 28px; 
    }

    h2 {
        font-size: 20px;
    }
    
    #question_number, #score {
        margin-left: 10%; 
    }

   #score {
        margin-right: 10%; 
    }

    input[type=guess], input[type=submit] {
        max-width: 60%;
    }

    button {
        font-size: 18px;
    }

    #myForm {
        font-size: 18px;
    }

}
