body {
    font-family: Montserrat, serif;
}

p {
    font-size: 1em;
}

fieldset {
    border: none;
    align-items: center;
    justify-content: flex-start;
    display: flex;
    flex-direction: column;
}

ul {
    margin-top: 0;
}

.jkl {
    border: 1px solid #be1e2d;
    padding: 4px 12px;
    border-radius: 4px;
}

.title {
    color: #be1e2d;
    text-align: center;
}

.input-data {
    padding: 0;
    margin: 0;
}

.all_destinations {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    grid-column-gap: 5px;
    grid-row-gap: 5px;
}

.destination {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    border: 2px solid #be1e2d;;
    border-radius: 5px;
    /*padding: 10px;*/
    margin: 5px;
    position: relative;
}

.heading-title {
    display: flex;
    flex-direction: row;
    border-bottom: 2px solid #be1e2d;
    align-items: center;
}

.country {
    padding: 4px;
    margin: 0;
    font-size: 1.5em;
    background: #be1e2d;
    color: white;
    flex: 1;
    text-align: center;
}

.dmc {
    flex: 1;
    padding: 4px;
    text-align: right;
}

.city {
    padding: 5px 5px;
    margin: 0;
    font-size: 1.2em;
    font-weight: bolder;
}

.hotel {
    padding: 3px 15px;
    margin: 0;
}

input {
    padding: 15px;
    margin: 5px 0;
    width: 400px;
    background-color: #33333350;
    border: 1px solid #be1e2d;
    color: #be1e2d;
    font-size: 16px;
    font-weight: 400;
}

.submit-button {
    background: linear-gradient(#be1e2d, #ad0c26);
    color: white;
    font-size: 18px;
    font-weight: 400;
}