@charset "UTF-8";

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.all{
    min-height: 100dvh;
}

.div-welcome {
    display: flex;
    justify-content: space-between;
    padding: 3em;
    height: 300px;
    background-color: #470073;
}

.div-title {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.title-1 {
    font-size: 36px;
    color: white;
    font-weight: bold;
}

.title-2 {
    font-size: 50px;
    color: white;
    font-weight: bold;
}

.div-image-initial-page {
    display: flex;
    align-items: center;

}

.image-initial-page {
    height: 240px;
}

.text-podtech {
    text-align: center;
    margin: 3em;
}

.text-podtech p {
    font-size: 25px;
}

.div-podcast {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    gap: 30px;
}

.div-podcast-title {
    display: flex;
    justify-content: center;
}

.div-podcast-title h1 {
    font-size: 35px;
}

.podcast {
    height: 232px;
    margin: 2em 0 8em 0;
    width: 90%;
}

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

    .div-welcome {
        height: 200px;
        padding: 0 0 1em 1em;
    }

    .title-1 {
        font-size: 20px;
    }

    .title-2 {
        font-size: 25px;
    }

    .image-initial-page {
        height: 140px;
    }

    .text-podtech {
        text-align: center;
        margin: 2em;
    }

    .text-podtech p {
        font-size: 19px;
    }

    .div-podcast-title h1 {
        font-size: 25px;
        text-align: center;
    }

    .podcast {
        height: 230px;
        margin: 0;
    }

}