html, body {
    margin: 0;
    padding: 0;
}

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+Mono:wght@400;600&family=Barriecito:wght@400');
body {
    background-color: #faf9eb;
   min-height: 100vh;
   justify-content: center;
   align-items: center;
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

.container {
    max-width: 1200px;
    width: 100%;
    padding: 40px 20px;
    margin: 0 auto;
}

.welcome-div {
    display: flex;
    justify-content: center;
    align-items: center;
}

.list {
    width: 50vw;
}
.text-div {
    width: 50vw;
    padding-right: 30px;
}

p {
    font-size: 16px;
    padding-left: 30px;
    text-align: center;
    font-family: 'Noto Sans Mono', monospace;
    line-height: 1.6;
 
}

.line-div-yellow {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    background-color: #e2d3a1;
    height: 4px;
    margin-bottom: 5px;
}

.line-div-blue {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    background-color: #ABC1C9;
    height: 4px;
     margin-bottom: 5px;
}

.line-div-green {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    background-color: #9cb292;
    height: 4px;
    margin-bottom: 5px;
}


h1 {
    color: #063970;
    text-align: center;
    font-size: 80px;
    font-weight: 600;
    font-family: 'Barriecito', 'Trebuchet MS', 'Arial', sans-serif;
    line-height: 2.0;
}

h2 {
    color: #063970;
    text-align: center;
    font-size: 20px;
    font-family: 'Noto Sans Mono', monospace;
    margin-bottom: 70px;
    font-weight: 700;
}

.intro-text {
    font-size: 16px;
    text-align: center;
    font-family: 'Noto Sans Mono', monospace;
}

.button-container {
    display: flex; 
    justify-content: center;
    align-items: center;
}
button {
    font-family: 'Noto Sans Mono', monospace;
    background-color: #9cb292;
    color: #faf9eb;
    padding: 12px 24px;
    border-radius: 5px;
    margin-top: 40px;
    cursor: pointer;
}

button:hover {
    background-color:  #5f8757;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

footer {
    background-color: #063970;
    color: #faf9eb;
    flex-direction: row;
    display: flex; 
    margin-top: auto;
    align-items: center;
    justify-content: space-between; 
    padding: 20px;  
    font-family: 'Noto Sans Mono', monospace;
}
footer a {
    color: #faf9eb;
    display: block;
    margin-bottom: 8px;
    width: 100vh;

}

.customization {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    padding: 20px;
    border: 2px solid #9cb292;
    border-radius: 10px;
    padding: 20px;
    margin: 30px 0;
    text-align: center;
}

.dropdown-container {
    font-family: 'Noto Sans Mono', monospace;
    margin: 15px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap:10px;
    padding: 10px

}
.dropdown-container label {
    font-family: 'Noto Sans Mono', monospace;
    font-weight: 600;
    color: #063970;
    min-width: 120px;
    text-align: right;
}
select {
    font-family: 'Noto Sans Mono', monospace;
    padding: 8px 12px;
    border: 1px solid #9cb292;
    border-radius: 5px;
    background-color: #faf9eb;
    color: #063970;
    font-size: 14px;
    min-width: 200px;
} 

select:focus {
    outline: none;
    border-color: #5f8757;
    box-shadow: 0 0 5px rgba(95, 135, 87, 0.3);
}