body {
    font-family: "Lato", sans-serif;
    margin: 0;
    background-color: #F7F7F7;
}

input[type=url], select {
    width: 80%;
    padding: 12px 20px;
    margin: auto;
    display: inline-block;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
  }

.header {
    background-color: #222222;
    height: 288px;
    padding: 16px 0 0 0;
}

.header-emoji {
    font-size: 48px;
    margin: 0 auto;
    text-align: center;
}

.header-title {
    color: #FFFFFF;
    font-size: 48px;
    font-weight: bold;
    text-align: center;
    margin: 0 auto;
}

.header-description {
    color: #CFCFCF;
    margin: 4px auto;
    text-align: center;
    max-width: 384px;
}

.wrapper {
    margin-right: auto;
    margin-left: auto;
    max-width: 1024px;
    padding-right: 10px;
    padding-left: 10px;
    margin-top: 32px;
}

.card {
    margin-bottom: 24px;
    box-shadow: 0 4px 6px 0 rgba(0, 0, 0, 0.18);
}

.menu {
    height: 112px;
    width: 1024px;
    display: flex;
    justify-content: space-evenly;
    padding-top: 24px;
    margin: -80px auto 0 auto;
    background-color: #FFFFFF;
    box-shadow: 0 4px 6px 0 rgba(0, 0, 0, 0.18);
}

.Select-control {
    width: 256px;
    height: 48px;
}

.Select--single > .Select-control .Select-value, .Select-placeholder {
    line-height: 48px;
}

.Select--multi .Select-value-label {
    line-height: 32px;
}

.menu-title {
    margin-bottom: 6px;
    font-weight: bold;
    color: #079A82;
}

.nav-class { padding: 10px; color: rgb(25, 22, 22); }
.nav-class a { color: rgb(15, 14, 14); }

ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: rgb(248, 245, 245);
  }
  
  li {
    float: left;
  }
  
  li a {
    display: block;
    color: white;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
  }
  
  /* Change the link color to #111 (black) on hover */
  li a:hover {
    background-color: rgb(240, 235, 235);
  }


  /* Styling for the information block */

.info-block {
    border: 2px solid #007BFF;  /* Blue border */
    border-radius: 10px;        /* Rounded corners */
    box-shadow: 2px 2px 10px #aaa;  /* Slight shadow for depth */
    margin: 50px;               /* Margin around the block */
    padding: 10px;              /* Padding inside the block */
    width: 50%;                /* Width of the block */
    margin-left: auto;         /* Center the block horizontally */
    margin-right: auto;
    text-align: center;        /* Center the text inside the block */
}

.info-block h4 {
    color: #007BFF;            /* Blue text for the title */
    margin-bottom: 20px;       /* Space below the title */
}

.info-block p {
    font-size: 16px;           /* Adjust font size if needed */
}

/* styles.css */
.download-button {
    background-color: #4CAF50; /* Green background */
    color: white;              /* White text */
    border: none;              /* No border */
    padding: 10px 20px;       /* Padding */
    text-align: center;        /* Centered text */
    text-decoration: none;     /* No underline */
    display: inline-block;     /* Inline block */
    font-size: 16px;          /* Font size */
    margin: 4px 2px;          /* Margin */
    cursor: pointer;           /* Pointer cursor */
    border-radius: 5px;       /* Rounded corners */
    transition: background-color 0.3s; /* Transition effect */
}

.download-button:hover {
    background-color: #45a049; /* Darker green on hover */
}