/* styles.css */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    transition-duration: 300ms;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    color: #333;
    margin-top: 20px;
}

a {
    color: #a88100;
    text-decoration: none;
    padding: 0, 0px;
}

a:hover{
    color: #5f5f5f;
    background-color: #ddd;
    border-radius: 10%;
    padding: .5px;
}
a:visited{
    color: #776606;
}

header {
    text-align: center;
    padding-bottom: 20px;
    border-bottom: 1px solid #ddd;
}

header h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
}

header p {
    font-size: 1.2em;
    color: #555;
}

header a {
    color: #006cb4;
    text-decoration: none;
}

header a:hover {
    text-decoration: underline;
}

section {
    margin: 20px 0;
}

h1 {
    margin: 10px 0;
}

h2 {
    font-size: 1.8em;
    margin: 15px 0 6px 0;
    color: #2c3e50;
}

h3 {
    margin: 10px 0 4px 0;
}

ul {
    list-style-type: square;
    margin-left: 20px;
}

.svg-link {
    margin-right: 10px;
    width: 25px;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 15px;
}

.skills {
    display: flex;
    flex-wrap: wrap;
}

.skills li {
    flex: 1 1 45%;
    margin-bottom: 10px;
    list-style-type: disc;
    margin: 5xp;
}

.skills li:hover {
    font-size: 1.02rem;
}

article {
    margin: 10px 0 10px 0;
    padding: 10px 5px 10px 5px;
    background-color: #ebebeb;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

#my-info {
    padding: 3%;
}

#my-info article {
    margin: 3% 0;
}

footer {
    max-width: 800px;
    margin: 0 auto;
    border-radius: 10px 10px 0 0;
    background: #333333;
    border-top: 1px solid #ddd;
    color: #ebebeb;
    padding: 0 30px 20px 30px;
}

footer #note {
    text-align: center;
    margin-top: 30px;
    font-size: 0.8em;
}

footer #note a {
    color: #e9b200;
}

footer section ul li {
    list-style-type: none;
}