/* nav header */

nav {
    max-width: 1440px;
    margin: 0 10%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}


nav div:nth-child(2) {
    display: flex;
    justify-content: center;
}

nav div:last-child {
    display: flex;
    justify-content: flex-end;
}

nav ul {
    display: flex;
    align-items: center;
    list-style: none;
}

nav ul li {
    margin: 0 40px 0 0;
}

.btn-kor {
    background-color: white;
    cursor: pointer;
}

.btn-kor img {
    width: 50px;
    height: 50px;
}

/* hero */

.hero {
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.hero div {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.hero div p {
    font-size: 32px;
}

.button {
    width: 250px;
    height: 60px;    
    background-color: white;
    border-radius: 15px;
    font-family: 'Roboto';
    font-size: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.button a {
    width: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.button div {
    width: 50px;
    height: 50px;
    background-color: black;
    border-radius: 15px;
    font-size: 30px;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-info {
    display: flex;
    gap: 20px;   
    margin-top: 50px; 
}

.hero-info div {
    border: 2px solid black;
    border-radius: 30px;
    padding: 10px 10px;
    height: 150px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}

/* modal */

.modal form {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

input {
    width: 300px;
    height: 50px;
    border: 2px solid black;
    border-radius: 15px;
    padding-left: 10px;
    font-size: 20px;
}
