@import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap');

* {
    box-sizing: border-box;
}

body, html {
    height: 100%;
    padding: 0;
    margin: 0;
    font-family: 'Roboto', sans-serif;
    background-image: url("./Sky.png");
    background-position: center;
    background-repeat: repeat;
    background-size: cover;
}

.bg {
    display: flex;
    flex: 1;

}

.content {
    padding: 2em;
    display: flex;
    flex-direction: row;
    height: 100%;
}

@media (max-width: 800px) {
    .content {
        padding: 2em;
        display: flex;
        flex-direction: column;
        height: 100%;
    }
}

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

.title {
    width: 600px;
    height: auto;
}

.logo {
    width: 200px;
    height: auto;
}

.content-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.container-images{
    display: flex;
    flex-direction: row;
    flex: 2;
    align-items: center;
    justify-content: center;
}

@media (max-width: 800px) {
    .container-images{
        display: flex;
        flex-direction: column;
        flex: 2;
    }
}

.img {
    width: 300px;
    height: auto;
    margin: 12px;
    border: solid 1px black;
    border-radius: 13px;

    box-shadow: 1px 5px 5px rgba(0,0,0,0.5);
}

.text-content {
    margin: 36px;
    text-align: center;
}

.article {
    margin: 36px;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media (max-width: 800px) {
    .article {
        margin: 36px;
        display: flex;
        flex-direction: column;
    }
}