.content {
    display: flex;
    justify-content: center;
    align-self: center;
    flex-direction: row;
    width: 1300px;
    height: 1800px;
    margin-top: 30px;
    margin-bottom: 80px;
}

.leftPanel {
    width: 50%;
    height: auto;
    margin-left: 10px;
}

.leftPanel img {
    border-radius: 5px;
}

.rightPanel {
    width: 50%;
    margin-right: 40px;
}

.basicInfo {
    margin-left: 40px;
    margin-top: 50px;
    width: auto;
}

.basicInfo h2 {
    font-size: 45px;
    margin-bottom: 60px;
}

.basicInfo h3 {
    font-size: 36px;
}

.rightPanel form {
    margin-left: 40px;
    padding-top: 50px;
}

.rightPanel form p {
    font-size: 30px;
    margin-right: 10px;
}

.description {
    margin-top: 30px;
}

.description h4 {
    color: rgb(105, 105, 105);
    font-weight: normal;
    font-size: 18px;
    line-height: 30px;
}

a {
    text-decoration: none;
}

.button {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
    width: 95% !important;
    color: white;
    background-color: #343a40;
    padding-top: 10px;
    padding-bottom: 10px;
    border-radius: 20px;
    font-family: Jost, Arial;
    box-shadow: 3px 3px #241f1f;
    font-weight: bold;
}

.footerContent {
    margin-bottom: 50px;
}

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

    .content {
        width: 100%;
    }
}

@media screen and (max-width: 900px) {
    .content {
        flex-direction: column;
    }

    .leftPanel {
        width: 80%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-left: 0px;
        margin: auto;
    }

    .rightPanel {
        width: 100%;
        display: flex;
        justify-content: center;
        flex-direction: column;
    }

    .rightPanel h2 {
        text-align: center;
        align-self: center;
        font-size: 45px;
        max-width: 80%;
    }

    .basicInfo {
        margin-left: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }
}

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

    h4 {
        margin-right: 40px;
    }
}

@media screen and (max-width: 410px) {
    .rightPanel h2 {
        text-align: center;
        align-self: center;
        font-size: 30px;
        max-width: 80%;
    }
}