

body {
margin: 0;
    font-family: Arial;
    background-image: url('tausta-indexfi.jpg');
    background-size: cover;

    background-repeat: no-repeat;
    /* Make the background image cover the entire area */
    background-position: top center;
    /* Center the background image */
}

h1 {
    color: white;
    font-family: "Yrsa", serif;
    font-weight: 600;
    padding-top: 1vh;
    padding-bottom: 1vh;
    font-size: 3em;
    text-align: center;
}

h2 {
    margin-block-start: 0.9em;
    margin-block-end: 0.4em;

    color: rgb(15, 92, 159);
    font-family: "Yrsa", serif;
}

.title-h2 {

    margin-block-start: 0.9em;
    margin-block-end: 0.2em;

    font-size: 2em;
}

h3 {
    color: rgb(15, 92, 159);
    font-family: "Yrsa", serif;
    margin-top: 5px;
    margin-bottom: 5px;
}


hr {
    width: 75%;
    height: 1px;
    background-color: rgba(126, 149, 192, 0.721);
    border: none;
}

.container {
    margin-bottom: 15vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.container-background {
    width: 100%;
    max-width: 80%;
    background-color: white;
    border-radius: 30px;
    padding: 25px;
    padding-left: 5%;
    padding-right: 5%;
    padding-bottom: 2%;
    box-shadow: 0 5px 10px rgba(14, 47, 88, 0.348);
    margin-right: 5%;
    margin-left: 5%;
}

/*content-logo == h1 div*/
.content-logo {
    display: flex;
    justify-content: center;
    /* Center the content horizontally */
    align-items: center;
    /* Center the content vertically */
}

.container-text {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 50px;
 
}
.container-text-sv{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column; 
    margin-bottom: 2vh;
}

.container-text-box {
    max-width: 30vw;
    margin-bottom: 1vh;


}

.container-text-box-sv {
    max-width: 60vw;
    margin-bottom: 1vh;


}

.container-text-box-last {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 1vh;
}

@media screen and (max-width:799px) {

    body {
        background-image: url('tausta-indexfi-mobile-2.jpg');
        background-size:auto;
    }


    .container {
        padding-top: 10vh;
        margin-bottom: 8vh;

    }

    .container-text {
        display: flex;
        flex-direction: column;
        gap: 0;
        margin-top: 0.5vh;
        margin-bottom: 0;
        max-width: 100%;
    }

    .container-background {
        max-width: 74%;
        padding-left: 7%;
        padding-right: 7%;
        margin-left: 10%;
        margin-right: 10%;
        padding-bottom: 7%;

    }

    .container-text-box {
        max-width: 100%;
    }

    h1{
        text-shadow: 2px 2px 10px rgba(58, 81, 141, 0.5);
       }
    h3 {
        text-align: center;
        margin-bottom: 2vh;
    }

    p {

        margin-block-start: 0.8em;
        margin-block-end: 0.8em;
    }
}