#landing-container {
    display: flex;
    flex-direction: row;
    width: 100vw;
    height: 100vh;
}

#about-container {
    display: flex;
    padding: 60px 0;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 100vw;
    border-top: 1px solid #ccc;
    box-sizing: border-box;
}

#about-container p {
    width: 50%;
    font-size: 16px;
}

.left-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    min-width: 400px;
    flex: 1;
}

#image-container {
    aspect-ratio: 914 / 1125;
    min-width: 300px;
    flex-shrink: 0;
}

h1 {
    font-size: 48px;
}

h2 {
    font-size: 40px;
}

h3, h4 {
    font-weight: normal;
}

#about-container h3 {
    font-size: 24px;
    margin: 0px;
}

form {
    width: 300px;
    margin-top: 60px;
    margin-bottom: 10px;
}

#name-container {
    display: flex;
    flex-direction: row;
    gap: 10px;
}

#fname, #lname {
    display: block;
    box-sizing: border-box;
    width: 100%;
    padding: 10px;
    border: 1px solid black;
    border-radius: 5px;
}

#email {
    display: block;
    box-sizing: border-box;
    width: 100%;
    margin: 10px auto;
    padding: 10px;
    border: 1px solid black;
    border-radius: 5px;
}

#submit {
    background-color: #007dc5;
    color: white;
    font-size: 14px;
    width: 100%;
    max-width: 300px;
    padding: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

@media (max-width: 1024px) {
	#landing-container {
		flex-direction: column;
        height: auto;
	}

  	#left-container {
        width: 100%;
    }

    #right-container {
        width: 100%;
    }
}
