html, body {
    position: relative;
    overflow-x: hidden;
    margin: 0px;
    width: 100%;
    font-family: "Edu NSW ACT Cursive", cursive;

    background-color: rgb(255, 255, 255);
    overflow-x: hidden;
    z-index: 5;
}

.bg-layer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 100%;
    background-image: url('/src/img/floral.jpg');
    background-size: 70%;
    background-repeat: repeat;
    background-position: top left;
    z-index: -1;
}
  

p {
    margin: 0px;
}

.col {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    text-align: center;
}

.row {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 30px;
    text-align: center;
}

.top_section {
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    
    height: 390px;

    background-image: url("/src/img/V32mPlg-.jpg");
    background-size: 100%;
    backdrop-filter: blur(4px);

    background-position: 0px -270px;
    background-size: 600px;
}

.img_car {
    width: auto;
    display: flex;
    flex-direction: row;
    justify-content: start;
    align-items: center;
    gap: 40px;
    flex-shrink: 0;
    transition: transform 250ms ease-in-out 0ms;
}

.img_car img {
    border-radius: 20px;
    box-shadow: 5px 5px 20px #00000049;
    width: 269px;
    user-select: none;
}

.arrows {
    transform: translate(0px, 230px);
    position: absolute;
    width: 95vw;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    font-size: 15vw;
    color: white;
    text-shadow: 1px 1px 20px #00000049;
}

.arrows p {
    cursor: pointer;
    user-select: none;
}

.det_box {
    background-color: white;
    padding: 20px;
    box-shadow: 1px 3px 10px #00000049;
    border-radius: 20px;
    word-wrap: normal;
}

i {
    color: white;
    background-color: rgb(54, 92, 180);
    padding: 10px;
    border-radius: 20px;
    width: 20px;
    height: 20px;
    aspect-ratio: 1/1;
    align-content: center;
}

textarea {
    font-family: 'Roboto';
    border: 1px #acacac solid;
    width: 100%;
    min-height: 150px;
    height: 40px;
    font-size: medium;
    border-radius: 10px;
    padding: 10px;
}

.popup {
    position: fixed;          /* Always stays in the same spot */
    z-index: 4;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 100vh;
    transform: translate(-50%, -50%);
    background-color: rgba(0, 0, 0, 0.3);
    padding: 20px;
    z-index: 9999;
}