@import url('https://fonts.googleapis.com/css2?family=Do+Hyeon&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

body {
    margin: 0;
    padding: 0;
    /* height: 100%; */
    /* overflow: hidden; */
}

.container {
    width: 100%;
    display: flex;
    justify-content: center;
    height: 100vh; 
    position: relative; 

    /* align-items: center; */
    /* background: red; */
}

.txt-container {
    position: relative;
    margin-top: 50px;
    box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.1);
    /* display: flex;
    flex-direction: column;
    justify-content: space-between; Pushes the content to the top and bottom */
}

.title {
    background: #f4bb16;
    width: 100%;
    height: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.txt-title {
    font-family: 'Do Hyeon';
    color: black;
    font-size: 3.5rem;
    font-weight: 200;
    text-align: center;
}

.explain {
    margin: 0 40px;
}

.txt-explain {
    font-family: 'Inter';
    text-align: justify;
}

.btn {
    position: absolute;
    bottom: 20px; /* Position button 20px from the bottom */
    left: 50%;     /* Center the button horizontally */
    transform: translateX(-50%); /* Adjust the button to center it exactly */
}

.btn-contact {
    font-family: 'Do Hyeon';
    font-size: 25px;
    color: black;
    border: none;
    width: 250px;
    height: 40px;
    background: #f4bb16;
    border-radius: 20px;
    transition: all 0.3s ease 0s
}

.btn-contact:hover {
    background: white;
    color: black;
    cursor: pointer;
}

.img-container {
    margin-bottom: 0;
    box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.1);
}

.img-view {
    width: 45vw;
    height: 100vh;
    object-fit: cover;
    overflow: hidden;
}