.container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    margin-bottom: 50px;
    font-family: "Bakbak One", sans-serif;
}

.bakbak-one-regular {
    font-family: "Bakbak One", sans-serif;
    font-weight: 400;
    font-style: normal;
}
.contact1 {
    width: 60%;
    padding: 80px 100px 40px 80px;
    display: flex;
    flex-direction: column;
}
.contact2 {
    width: 40%;
    padding: 80px 80px 40px 20px;
}
.contact2 img {
    width: 100%;
    height: 75%;
}
.contact1 .con-intro {
    display: flex;
    flex-direction: column;
    width: 100%;
}
.contact1 .con-intro  h1 {
    color: #00264b;
}
.contact1 .con-intro  p {
    color: black;
    font-size: medium;
}
form {
    width: 100%;
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 50px;
}
form input, form #message, form textarea {
    width: 100%;
    border: none;
    box-shadow: none;
    outline: none;
    cursor: text;
    padding: 10px;
    background-color: whitesmoke;
    font-size: large;
    border-radius: 10px;
    border: 2px solid whitesmoke;
}
form input:hover, form input:active, form #message:hover, form #message:active {
    background-color: white;
}
#submit {
    border: none;
    color: white;
    cursor: pointer;
    background-color: #00264b;
}
#submit:hover, #submit:active {
    background-color: #ff0000;
}
.contact-info {
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: space-between;
    align-items: center;
}
.contact-info .duck {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    height: 150px;
    padding: 5px;
    width: 30%;
    border-radius: 10px;
    box-shadow: 2px 5px 5px #f4f4f4;
    background-color: #00264b;
}
.contact-info .duck1 {
    text-align: center;
    font-size: large;
    font-weight: 700;
    color: #ff0000;
}
.contact-info .duck2 {
    text-align: center;
    font-size: medium;
    font-weight: 400;
    color: white;
}
.form textarea {
    font-family: "Bakbak One", sans-serif;
    font-size: large;
    resize: unset;
}