@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');

body {
    background-color: hsl(212, 45%, 89%);
    height: 100vh;
    margin: 20px;  
    font-family: 'Outfit', sans-serif;
}

.container {
    background-color: hsl(0, 0%, 100%);
    margin: auto;
    height: 85%;
    display: flex; 
    flex-direction: column;
    border-radius: 7%;
    padding: 10px;
    text-align: center;
}

img {
    height: 65%; /* Adjust height to maintain aspect ratio */
    max-width: 100%; /* Ensure image does not exceed container width */
    border-radius: 7%;
}

h3 {
    padding: 10px 15px 0px 15px;
    font-size: 25px;
    font-family: 'Outfit', sans-serif;
}

pre {
    margin: 0;
    color: hsl(220, 15%, 55%);
    font-family: 'Outfit', sans-serif;
    font-size: 20px;
}

.attribution {
    padding: 10px;
}

/* Media queries for different screen sizes */

/* Mobile */
@media screen and (max-width: 375px) {
    .container {
        width: 80%; 
       /* Adjust width for smaller screens */
    }
    h3, pre {
        font-size: 25px;
        
    }
    pre {

    }
}

/* Desktop */
@media only screen and (min-width: 1440px) {
    .container {
        width: 25%; /* Adjust width for larger screens */
    }
}
