* {
    margin: 0;
    padding: 0;
    color: rgb(66,66,66);
    font-family: arial;
}

.container {
    width: 100%;
    height: 98vh;
    background-image: url("assets/background.png");
    background-repeat: no-repeat;
    background-size: cover;
    display:flex;
    align-items: center;
    justify-content: center;
}

.content {
    width: 600px;
    background-color: rgba(255,255,255, 0.7);
}

.content__header {
    width: 100%;
    border-bottom: 2px solid rgb(28,38,43);
    display:flex;
    justify-content: space-between;
}

.content__header--image {
    padding-top: 30px;
    padding-left: 20px;
    padding-bottom: 10px;
}

.content__header--image-2 {
    height: 50px;
    padding-top: 40px;
    padding-right: 20px;
    padding-bottom: 10px;
}

.content__text {
    padding: 0 10px;
}

.content__text--title {
    font-size: 60px;
    font-weight: 600;
    padding: 30px 0;
}

.content__text--long {
    padding-bottom: 20px;
    font-weight: 100;
}

.upper-line {
    height: 2vh;
    background-color: rgb(150,25,45);
}

.upper-line-fendt {
    height: 2vh;
    background-color: rgba(0, 94, 29, 1);
}

.upper-line-valtra {
    height: 2vh;
    background-color: rgba(174, 19, 42, 1);
}

.upper-line-mf {
    height: 2vh;
    background-color: rgba(174, 19, 42, 1);
}

.upper-line-agco {
    height: 2vh;
    background-color: rgba(174, 19, 42, 1);
}

@media screen and (max-width: 767px) {
    .content {
        width: 80%;
        height: 70%;
        background-color: #FFF;
    }

    .content__text--title {
        font-size: 40px;
        font-weight: 600;
        padding: 20px 0;
    }
  }