*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html{
    font-size: 16px;
}
body{
    background-color: #1D8AC4;
    color: white;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    user-select: none;
}
#demo{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50%;
    height: 50%;
    padding: 1rem;
    background-color: #ffffff1a;
    overflow: hidden;
    border-radius: 1rem;
}
img{
    max-width: 100%;
    max-height: 100%;
    border-radius: 0.75rem;
    border: 1px solid black;
    object-fit: contain;
}