/* Typography */
body {
font-family: 'Roboto', sans-serif;
font-size: 16px;
line-height: 1.5;
color: #333;
margin-top: 20px;
margin-right: 80px;
margin-bottom: 20px;
margin-left: 80px;
}

h1, h2, h3 {
font-family: 'Montserrat', sans-serif;
font-weight: bold;
margin-bottom: 20px;
}

h1 {
font-size: 36px;
}

h2 {
font-size: 30px;
}

h3 {
font-size: 24px;
}

p {
margin-bottom: 20px;
}

/* Colors */
:root {
--primary-color: #3F51B5;
--secondary-color: #f44336;
--light-color: #f2f2f2;
}

/* Header */
header {
height: 80px;
display: flex;
justify-content: space-between;
align-items: center;
background-color: var(--primary-color);
color: #fff;
}

.logo {
margin-left: 20px;
}

nav ul {
list-style: none;
margin: 0;
padding: 10;
display: flex;
}

nav li {
margin-right: 20px;
}

nav a {
color: #fff;
text-decoration: none;
transition: all 0.3s ease;
}

.navbar {
list-style-type: none;
margin: 0;
padding: 0;
background-color: #3F51B5;
overflow: hidden;
}

.navbar li {
float: left;
}

.navbar li a {
display: block;
color: white;
text-align: center;
padding: 14px 16px;
text-decoration: none;
}

.navbar li a:hover {
background-color: #3F51B5;
}

.dropdown-content {
display: none;
position: absolute;
background-color: #f9f9f9;
min-width: 160px;
box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
}

.dropdown-content li a {
color: #f44336;
padding: 12px 16px;
text-decoration: none;
display: block;
text-align: left;
}

.dropdown:hover .dropdown-content {
display: block;
}

nav a:hover {
color: var(--secondary-color);
}

/* Main Content */
main {
padding: 10px;
background-color: #fff;
}

/* Button */
.btn {
display: inline-block;
padding: 10px 20px;
border-radius: 5px;
text-decoration: none;
color: #fff;
background-color: var(--primary-color);
transition: all 0.3s ease;
}

.btn:hover {
background-color: var(--secondary-color);
}

.image-container {
text-align: center;
}

img {
display: block;
margin: auto;
}

.indented {
text-indent: 150px;
line-height: 1.5;
}

.ul {
list-style-position: inside;
padding-left: 150px;
line-height: 2.0;
}

.customIndent {
margin-left: -15px;
line-height: 1.5;
}

footer {
margin-top: 140px;
  height: 120px;
  justify-content: center; /* centers items horizontally */
  align-items: center;
  background-color: var(--primary-color);
  color: #fff;
    line-height: auto;
}

 footer a:hover {
color: var(--secondary-color);
}

footer a {
  color: white;
    margin: 10px;
}

.social-icons {
  display: flex;
  justify-content: center;
}

.social-icons a {
  margin: 0 10px;
  color: #fff;
}

.social-icons a:hover {
  color: #fff;
}

.social-icons i {
  font-size: 30px;
}

/* Button */

Copy code
.button-container {
  display: inline-block;
}

.button {
  background-color: var(--primary-color);
  border: none;
  color: white;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 4px;
  cursor: pointer;
  border-radius: 5px;
}

.button + .button {
  margin-left: 16px;
}

.mailing-list-form {
  display: flex;
  align-items: center;
}

.mailing-list-form label {
  margin-right: 16px;
  font-size: 16px;
  font-weight: bold;
}

.mailing-list-form input[type="email"] {
  .mailing-list-form input[type="email"] {
  padding: 8px 12px;
  border-radius: 5px;
  border: 1px solid #ccc;
  font-size: 16px;
  flex: 1;
  margin-right: 16px;
}
.mailing-list-form button {
  background-color: var(--primary-color);
  border: none;
  color: white;
  padding: 10px 16px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  cursor: pointer;
  border-radius: 5px;
}