@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;700&display=swap');


body {
    display: flex;
    justify-content: center;
    font-family: 'Open Sans', sans-serif;

}

header,
ul,
p {
    text-align: center;
    font-size: 20px;
    color: #7d8f69;
    font-weight: 700;

}

#time {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 600;
    color: #ffffff;
    background: #7d8f69;
    padding: 12px 24px;
    border-radius: 12px;
    text-align: center;
    display: grid;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    letter-spacing: 2px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card {
    background-color: #fffdf6;
    border-radius: 5px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
    max-width: 700px;
    width: 100%;
    transition: background-color 0.3s ease-in-out, transform 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
    word-break: break-word;
}

.card:hover {
    box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
    transform: translateY(-10px);
}

img {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    transition: 0.3s;
}

img:hover {
    transform: scale(1.1);
}

hr {
    border: 10px solid #7d8f69;
    border-radius: 5px;
}

.links {
    display: flex;
    justify-content: space-around;
    list-style-type: none;
    gap: 0.1rem;
    margin: 0;
    padding: 0;
}

ul {
    list-style-position: inside;
}

.fa {
    padding: 20px;
    font-size: 30px;
    width: 30px;
    text-align: center;
    border-radius: 50%;
    text-decoration: none;
}

.fa-twitter {
    background: #55ACEE;
    color: white;
}

.fa-github {
    background: black;
    color: white;
}

.fa-linkedin {
    background: #55ACEE;
    color: white;
}

section {
    justify-content: space-around;
}

div {
    text-align: center;
    font-weight: 700;
    font-size: 20px;
    color: #7d8f69;
}

a {
    text-decoration: underline;
    color: white;
    transition: 0.3s;
}
a:hover{
transform: scale(1.1);
}