@font-face {
    font-family: 'Poppins';
    src: url('fonts/Poppins-Light.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Poppins';
    src: url('fonts/Poppins-Medium.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

body {
    font-family: 'Poppins', sans-serif;
    letter-spacing: .03rem;
    margin: 0;
    padding: 0;
    background-color: #f0f0f0;
}

.header {
    background-color: #066694;
    color: white;
    padding: 20px;
    text-align: center;
}

.header img {
    max-width: 100%;
    height: auto;
}

/* Sections */
.section {
    padding: 20px;
    text-align: center;
    background-color: #e6f2f5;
    margin-bottom: 20px;
}

.button {
    border: none;
    padding: 10px 20px;
    margin: 10px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.button:hover {
    transform: scale(1.05);
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.15);
}

.button i {
    margin-right: 8px;
    vertical-align: middle;
}

.copy-button {
    border: none;
    padding: 10px 20px;
    margin: 10px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    font-family: "Poppins";
}

.copy-button:hover {
    transform: scale(1.05);
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.15);
}

.copy-button i {
    margin-right: 8px;
    vertical-align: middle;
}