.landing-page-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-left: 150px;
    user-select: none;
}

.btn-start:hover {
    background-color: #643f37;
    color: white;
}

.btn-start {
    padding: 0.5em 1em;
    width: fit-content;
    max-width: -moz-max-content;
    background-color: rgb(202 202 202 / 26%);
    border-radius: 8px;
}

@media (orientation: portrait) {
    .landing-page-content {
        justify-content: flex-end;
        padding-right: 5vw;
        padding-left: 5vw;
        margin-bottom: 25px;
        margin-left: 0px;
    }

    .btn-start {
        width: 100%;
        background-color: #643f37;
        border-radius: 8px;
        text-align: center;
        margin-top: 10vh;
    }
    .btn-start:hover {
        background-color: white;
        color: #643f37;
    }

    
}

