@import url('/style/master.css');

touchdown-jumbotron {
    display: block;
    text-align: center;
    position: relative;
    margin-bottom: 5rem;
    width: 100%;
    height: 75vh;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}

touchdown-jumbotron .controls {
    position: absolute;
    top: 103%;
    left: 0; right: 0;
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: center;
}

touchdown-jumbotron .controls button {
    background-color: #5b9b95;
    width: 42pt;
    height: 42pt;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 21pt;
}

.section {
}

.section img {
}

.section .title {
    font-size: 2rem;
    font-weight: bold;
}

@media (max-width: 719px) {
    .section img {
        width: 100%;
    }
}
@media (min-width: 720px) {
    .section {
        display: flex;
        align-items: flex-start;
        gap: 1rem;
        margin-bottom: 1rem;
    }
    .reverse.section {
        flex-direction: row-reverse;
    }
    .section img {
        width: 50%;
    }
    .reverse.section .text {
        text-align: end;
    }
}