@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

body {
    margin: 0;
    padding: 0;
    font-family: "Poppins", sans-serif;
    background-color: white;
}

h2 {
    margin: 0;
    padding: 0;
    font-size: 24px;
}

a {
    text-decoration: none;
    color: #000;
}

footer {
    text-transform: uppercase;
    position: relative; 
    text-align: center;
    font-weight: bold;
    font-size: 13px;
    color: #000;

    
    margin: 0 auto;
    padding: 0 15px;
    position: relative;
}

footer a:hover {
    text-decoration: underline;
}

.background {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: linear-gradient(to bottom, #009BE7 0%, #fff 100%);
}

.container {
    display: flex;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    max-width: 800px;
    overflow: hidden;
}

.image-container {
    max-width: 50%;
    border-radius: 10px 0 0 10px;
    overflow: hidden;
    background-color: #f7f7f7;
    user-select: none;
}

img {
    width: 100%;
    user-select: none;
}

.content {
    flex: 1;
    padding: 20px;
    box-sizing: border-box;
}

.mobileExample {
    margin-top: 10px;
}

.title {
    font-weight: bold;
    margin-top: 10px;
    font-family: "Poppins", sans-serif;
    font-size: 20px;
}

.body {
    margin-top: 10px;
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: normal;
    letter-spacing: normal;
    line-height: 22px;
    text-transform: none;
}

.download-button {
    width: 150px;
    height: auto;
    display: inline-block;
    user-select: none;
    margin: 0 5px;
}

@media (max-width: 750px) {
    .image-container {
        display: none;
    }
}