* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

a {
    width: fit-content;
    color: white;
}

html, body, :root {
    height: 100%;
}

html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    min-height: 100%;
    min-width: 100%;
    background-color: #EBEBEB;
    overflow-x: hidden;
    font-family: 'Bebas Neue', cursive;
    font-size: 24px;
    /* font-family: 'Bebas Neue', cursive; */
    background-image: linear-gradient(to top, #034bc6, #1338a8, #15258b, #11126f, #090055);
}

.main-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow-x: hidden;
    gap: 35px;
    padding: 50px 0px;
    height: 100%;
}

.main-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 35px;
    max-width: 40%;
    height: 100%;
}

.container {
    width: 100%;
    max-width: 500px;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.5);
    position: relative;
}

.container-column {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.container-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
}

.fp_title {
    text-align: center;
    font-weight: 400;
    font-family: 'Roboto', sans-serif;
    font-size: 22px;
    margin-top: 0px;
    /* padding: 0px 20px; */
    color: #f55344;
}

.logo{
    margin-right: 20px;
}

.logoPingTour{
    filter: brightness(100);
}

.image-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    width: 100%;
}

.googleStore, .appStore {
    width: 304px;
    height: 105px; 
}

.logo_fftt {
    width: 64px;
    filter: brightness(100);
    /* justify-content: space-between; */
    /* margin-right: 10px; */
}

.logoFreeping {
    width: 100%;
    margin-bottom: 20px;
}

.form_contact {
    width: 100%;
    max-width: 500px;
    gap: 20px;
    margin-top: 0px;
}

.names_container {
    width: 100%;
    justify-content: space-between;
}

.contact {
    font-weight: bold;
    font-family: 'Roboto', sans-serif;
    width: 100%;
    padding: 10px 20px;
    border-radius: 50px;
    border: none;
    outline: none;
    color: #ff887c;
}

.contactDate { 
    font-weight: bold;
    font-family: 'Roboto', sans-serif;
    width: 100%;
    padding: 10px 20px;
    border-radius: 50px;
    border: none;
    outline: none;
    color: #ff887c;
}

.contact::placeholder {
    color: #ff887c;
}

.contactDate::placeholder{
    color: #ff887c;
}

.fp_desc {
    text-align: center;
    font-size: 100%;
    font-weight: 500;
    padding: 30px 20px;
    font-family: 'Roboto';
    color: white;
    line-height: 40px;
}

.fp_info{
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    font-family: 'Roboto';
    color: white;
    font-style: italic;
}

.btn-validation {
    padding: 10px 25px;
    border-radius: 15px;
    outline: none;
    border: none;
    color: white;
    background-image: radial-gradient(circle, #ff887c, #fd7b6e, #fb6f60, #f86152, #f55344);
    transition: ease-in-out all 0.2s;
}

.btn-validation:hover {
    cursor: pointer;
    filter: brightness(1.2);
}

.description {
    font-size: 100%;
    white-space: nowrap;
    text-align: center;
    font-family: 'Roboto';
    margin: 0px 0px;
    color: white;
}

.screenshot-container {
    display: flex;
    justify-content: center;
    width: 100%;
}

.screenshot-container img {
    width: 35%;
    border-right: 1px solid white;
}

.screenshot-container img:hover {
    cursor: pointer;
}

.preview-image {
    display: none;
    justify-content: center;
    align-items: center;
    top: 0px;
    left: 0px;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    cursor: pointer;
    position: fixed;
}

.preview-image.active {
    display: flex;
}

.preview-image img {
    height: 90%;
}

@media (max-width: 1000px) {
    /* .screenshot-container {
        flex-direction: column;
        align-items: center;
        gap: 5px;
    } */
    .screenshot-container {
        flex-wrap: wrap;
        justify-content: center;
    }
    .screenshot-container img {
        width: calc(100% / 2);
    }
    .description {
        font-size: 80%;
    }
    .fp_desc {
        font-size: 60%;
    }
    .main-content {
        max-width: 100%;
        padding: 0px 20px;
        padding-bottom: 20px;
    }
    .image-container {
        gap: 0px;
    }
    .logoFreeping {
        width: 75%;
    }
}

@media (max-width: 600px) {
    .image-container {
        flex-direction: column;
    }
}