@media only screen and (max-width: 1280px) {
    /* For mobile phones: */
    .passport {
        width: 100% !important;
        height: 100% !important;
    }
    .content {
        width: 100% !important;
    }
    .image {
        width: 100% !important;
        height: auto !important;
    }
}

* {
    font-family: "century gothic", sans-serif;
}

body{
    background-color: var(--sub-item-backcolor);
    display: flex;
    justify-content: center;
}

.form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.passport {
    display: flex;
    justify-content: center;
    align-items: center;
    height: auto;
}

.content {
    background-color: var(--color_8);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.content h2 {
    text-align: center;
    margin-bottom: 20px;
    color: var(--menu-item-color);
}

.image {
    width: 462px;
    height: 298px;
    margin-bottom: 20px;
}

p {
    color: var(--menu-item-color);
}

.link1 {
    display: flex;
    justify-content: space-between;
}

.link1 > a {
    color: var(--color_a);
    text-decoration: none;
    font-size: 14px;
}

.link1 a:hover {
    text-decoration: underline;
}

