html,
body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-align: center;
    background-color: #FF9B97;
    font-family: system-ui, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    color: #482d2c;
    /* width: 100vw; */
    /* min-width: 472px; */
}

@media only screen and (min-width: 1500px) {

    /* large devices */
    body {
        font-size: 3.2rem !important;
    }


}

@media only screen and (max-width: 1500px) {

    /* laptops */
    body {
        font-size: 1.2rem;
    }
}



@media only screen and (max-width: 1200px) {

    /* tablets */
    body {
        font-size: 1.1rem;
    }

}

@media only screen and (max-width: 850px) {
    body {
        font-size: 0.9rem;
    }
}

@media only screen and (max-width: 768px) {

    /* phones */
    body {
        /* height: 97vh; */
        font-size: 0.8rem;
    }

    footer {
        flex-flow: column !important;
        align-items: center !important;
    }

    .like,
    .dislike {
        font-size: x-large;
    }

}

@media only screen and (max-width: 425px) {

    /* phones */
    body {
        font-size: 0.7rem;
    }
}

#getin {
    position: fixed;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
    background-color: #ff484290;
    gap: 10px;
}

#error,
#response {
    font-weight: bold;
    color: #FFFFFF;
}

.input:hover {
    box-shadow: 5px 3px 5px white;

    /* right down blur expansion colour */
}

.input {
    /* border-collapse:collapse; */
    border: none;
    background-color: #985855;
    border-bottom: 1px solid black;
    padding: 5px;
    color: white;
    border-radius: 5px;
}

.input::placeholder {
    color: rgba(255, 255, 255, 0.444);
}

#content {
    height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    /* align-items: center; */
    justify-content: center;
    gap: 5%;
}

#form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

/* button */
.button-24 {
    background: #FF4742;
    border: 1px solid #FF4742;
    border-radius: 6px;
    box-shadow: rgba(0, 0, 0, 0.1) 1px 2px 4px;
    box-sizing: border-box;
    color: #FFFFFF;
    cursor: pointer;
    display: inline-block;
    font-family: nunito, roboto, proxima-nova, "proxima nova", sans-serif;
    font-size: 16px;
    font-weight: 800;
    line-height: 16px;
    min-height: 40px;
    outline: 0;
    padding: 12px 14px;
    text-align: center;
    text-rendering: geometricprecision;
    text-transform: none;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    vertical-align: middle;
}

.button-24:hover,
.button-24:active {
    background-color: initial;
    background-position: 0 0;
    color: #8c3532;
}

.button-24:active {
    opacity: .5;
}

#tableContainer {
    /* height: 100vh; */
    width: 100%;
    display: flex;
    flex-direction: column;
    padding-bottom: 10%;
    /* align-items: center; */
    /* width: fit-content; */
    /* max-width: 100vw; */
}

#table {
    font-family: Arial, Helvetica, sans-serif;
    border-collapse: collapse;
    width: 100%;
    /* max-width: 100%; */
    max-height: 100%;
    /* overflow: auto; */
    /* overflow-x: auto; */
    /* white-space: nowrap; */
}

#table td,
#table th {
    border: 1px solid #ddd;
    padding: 8px;
}

#table tr:nth-child(even) {
    background-color: #f2f2f2;
}

#table tr:hover {
    background-color: #ddd;
}

#table th {
    padding-top: 12px;
    padding-bottom: 12px;
    text-align: left;
    background-color: #04AA6D;
    color: white;
}

#table td {
    padding-top: 8px;
    padding-bottom: 8px;
    max-height: 1vh;
}



.like:hover,
.dislike:hover,
.wantToVisit:hover {
    cursor: pointer;
}

#searchContainer {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: auto;
}

.searchbox {
    width: fit-content;
    margin: autos;
}

footer {
    /* border-top: #333333 4px solid; */
    display: flex;
    flex-flow: row;
    font-size: .5rem !important;
    width: 100%;
    justify-content: space-between;
    /* min-height: 10%; */
    padding: 2% 0% 2% 0%;
    align-items: flex-start;
    background-color: #ff48425c;
    /* color: #f5f2f2; */
    /* margin-top: 5%; */
}