* {
    padding: 0;
    margin: 0;
}


.header {
    width: 100dvw;
    height: 40dvh;
    background-image: url('../images/web_banner.svg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center; 
    align-items: center;
}

.bababa {
    font-size: 96px;
    color: #444444;
}

.body {
    width: fit-content;
    height: fit-content;
    color: white;
    line-height: 20px;
    margin-top: 70px;
    margin-left: 20px;
    margin-right: 20px;
    margin-bottom: 50px;
}

.spacing {
    height: 20px;
}

body {
    background-color: #444444;
    overflow-x: hidden;
}

.main_header {
    font-size: 48px;
    color: #f44336;
    margin-bottom: 70px;
    width: 100%;
    text-align: center;
}


@media only screen and (min-width: 768px) {
    .header {
        height: 40dvh;
    }

    .body {
        margin-right: 100px;
        margin-left: 100px;
        margin-top: 100px;
    }
}

@media only screen and (min-width: 1024px) {
    .header {
        height: 40dvh;
    }
    .body {
        margin-right: 200px;
        margin-left: 200px;
        margin-top: 100px;
    }
}