body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 95vh;
    background: url(Fotky/Background2.gif);
}

.domu {
    position: fixed;
    top: 10px;
    left: 15px;
    width: 50px;
    height: 50px;
}

.domu img {
    width: 100%;
    height: auto;
}

h1 {
    font-family: Futura, "Trebuchet MS", Arial, sans-serif;
    font-style: normal;
    font-variant: normal;
    font-weight: 700;
    line-height: 26.4px;
    color: whitesmoke;

}
h3 {
    font-family: Futura, "Trebuchet MS", Arial, sans-serif;
    font-style: normal;
    font-variant: normal;
    font-weight: 700;
    line-height: 26.4px;
    color: whitesmoke;
}


.container {
    background: #ffffff09;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    display: flex;
    align-items: center;
    gap: 20px;
}
.image {
    width: 50%;
    height: auto;
    border-radius: 10px;
}
.text {
    width: 50%;
}


@media (max-width: 480px) {
    .domu {
        top: 1%;
        left: 45%;
    }

    .container {
        flex-direction: column;
        align-items: center;
        text-align: center;
        width: 80%;
        height: 80%;
    }
    .image {
        width: 70%;
    }
    .text {
        width: 90%;

    }

    h1{
        font-size: 1.2rem;
        margin: -10px;
    }

    h3{
        font-size: 1rem;
    }
 } 