* {
    /* box-sizing: border-box; */
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #1a1a1a;

}

header {
    background-color: #333;
    color: #000000;
    text-align: center;
    padding: 20px;
    border-style: solid;
    border-color: black;
    display: block;
}

header h1 {
    margin-bottom: 10px;
}

main {
    max-width: 800px;
    margin: 40px auto;
    padding: 20px;
    background-color: #353434;
    box-shadow: 2 20px 10px rgba(11, 6, 77, 0.404);
    border-style: dashed;
    border-color: rgb(26, 0, 0);
    color: rgb(0, 0, 0);
    font-size: 18px;
}

section {
    margin-bottom: 30px;
}

h2 {
    margin-top: 15px;
}

button {
    background-color: #333;
    color: #fff;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    position: relative;
    margin-top: 10px;
    left: -15px;
    font-size: 15px;
}

button:hover {
    background-color: #444;

}

.summary-container {
    margin-top: 30px;
    padding: 15px;
    background-color: rgba(117, 14, 14, 0);
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

footer {
    background-color: #333;
    color: #000000;
    text-align: right;
    padding: 10px;
    /* clear: both; */
    margin-top: 50px;
}

#contact{
        background-color: #333;
        color: #000000;
        text-align: right;
        padding: 10px;
        /* clear: both;
        margin-top: 50px; */
}

a:visited {
    color: #ffc0cb;
    background-color: transparent;
    text-decoration: none;
  }

  a:link {
    color: green;
    background-color: transparent;
    text-decoration: none;
  }

  a:hover {
    color: #b4868e;
    background-color: transparent;
    text-decoration: underline;
  }
  
  a:active {
    color: #fda6b5;
    background-color: transparent;
    text-decoration: underline;
  }