* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.btn-primary {
    background-color: #333333 !important;
    border: #f7d935;
    border-radius: 15px;
    color: white;
    font-weight: 700;
    transition: 1s ease;
    padding: 15px 0;
    font-size: 18px;
    transition: .7s ease-in-out !important;
}

.btn-primary:hover {
    background-color: #f7d935 !important;
    color: #333333;
}

.btn-calc {
    background-color: #f7d935 !important;
    color: #333333;
  }

.btn-calc:hover {
    background-color: #ebb82d !important;
}

a  {
    text-decoration: none;
    color: orange;
    transition: 1s ease;
}

a:hover {
    color: #f7d935;
}

.card-back {
    display: flex;
    flex-direction: column;
    background-color: #f3f3f3;
    justify-content: center;
    align-items: center;
    padding: 50px;
    width: 60%;
    height: 100%;
}

body {
    background-color: #333333;
}

.brand {
    width: 50%;
    height: auto +10%;
    justify-content: center;
}


.content-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.beta-msg {
    color: #d0d0d0;
    transition: 1s ease-in-out;
}

.beta-msg:hover {
    color: #333333;
    cursor: pointer;
    transition: 1s ease-in-out;
}

.text-2 {
    display: flex;
    flex-direction: column;
}


@media (max-width: 1600px) {
    .card-back {
        width: 50%;
        height: 100vh;
    }
}

@media (min-width: 1919px) {
    .card-back {
        width: 50%;
        height: 100vh;
    }
}