body 
{
    background-image: url("BarrelEyeFishBackground.jpg");
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;

    font-family: Arial, sans-serif;
    margin: 0;
    padding: 20px;
}

.container 
{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
}

.text 
{
    flex: 1;

    border: 5px solid #79ff4d;
    background-color: #cce6ff;
    color: #333333;
    padding: 10px;
    border-radius: 4px;
}

.BarrelEyeFish 
{
    width: 300px;
    max-width: 100%;
    height: auto;
    flex-shrink: 0;
}
@media (max-width: 768px) 
{

    .container 
    {
        flex-direction: column;
        align-items: center;
    }

    .text 
    {
        width: 100%;
    }

    .BarrelEyeFish 
    {
        width: 70%;
        max-width: 300px;
    }

}