/* @import url('./main.css'); */

main {
    position: absolute;
    top: 0;
    width: 100%;
    height: 50vh;
    background-image: url(../img/index/home_cut.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

main h1 {
    position: absolute;
    transform: translate(-50%, -50%);
    color: rgb(0, 0, 0);
    font-size: 48px;
    text-transform: uppercase;
}

.title {
    top: 70%;
    left: 65%;
}

.content {
    position: relative;
    top: calc(50vh - 80px);
}

@media only screen and (max-width: 900px) {
    main {
        background-image: url(../img/index/home.jpg);
    }

    main h1 {
        font-size: 26px;
    }

    .title {
        top: 50%;
    }
}