/* Importing Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600&display=swap');

/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Open Sans', sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh; 
    padding: 20px;
    background-color: #9E77F9;
  }
  
  /* Style for the header container */
header {
  text-align: center;
  padding-top: 30px;
}

/* Flexbox for header container */
.header-container {
  display: flex; 
  justify-content: center; 
  align-items: center; 
}

/* Style the header title */
h1 {
  font-family: 'Poppins', sans-serif;
  color: hsl(0, 0%, 100%);
  margin-right: 20px; 
}

/* Style the thermometer image */
.thermometer {
  width: 50px; 
  height: auto;
}
  
  main {
    width: 100%;
    max-width: 600px; 
    padding: 20px;
    margin: 20px auto 0; 
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }
  
  .converter {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  
  .input-section {
    display: flex;
    flex-direction: column;
  }
  
  label {
    font-family: 'Open Sans', sans-serif;
    margin-bottom: 5px;
    font-size: 1rem;
  }
  
  select, input[type="number"], input[type="text"] {
    font-family: 'Open Sans', sans-serif;
    padding: 10px;
    font-size: 1rem;
    width: 100%; 
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
  }
  
  button {
    font-family: 'Open Sans', sans-serif;
    padding: 15px;
    font-size: 1.2rem;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
  }
  
  button:hover {
    background-color: #45a049;
  }
  
  footer {
    margin-top: 30px;
    font-size: 0.8rem;
    color: #555;
  }
  
  footer a {
    color: #555;
    text-decoration: none;
    margin: 0 10px;
  }