@import url('https://fonts.googleapis.com/css2?family=Pacifico&family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    text-decoration: none;
    scroll-behavior: smooth;
    list-style: none;
}

body {
    display: flex;
    align-items: center;
    flex-direction: column;
    min-height: 100vh;
    overflow-x: hidden;
    width: 100%;
    /* background: #000; */
}

.container {
    /* position: relative; */
    width: 80%;
    max-width: 800px;
    margin: 100px auto;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

h2 {
    color: #0056b3;
    margin-bottom: 10px;
    font-size: 1.8rem;
    border-bottom: 2px solid #ddd;
    padding-bottom: 5px;
}

#contact ul li:nth-child(3){
    text-transform: capitalize;
}

h3 {
    color: #333;
    font-size: 1.4rem;
    margin-top: 15px;
    margin-bottom: 8px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 5px;
}

footer{
    position: static;
    bottom: 0;
}
section {
    margin-bottom: 20px;
}

p, ul {
    margin-bottom: 10px;
    font-size: 1rem;
    line-height: 1.5;
}

ul {
    list-style-type: disc;
    margin-left: 20px;
}

ul li {
    margin-bottom: 5px;
}

a {
    color: #0056b3;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}
