* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    color: rgb(25, 25, 25);
    font-family: "Inter", sans-serif;
    line-height: 1.6;
}

a {
    color: rgb(0, 140, 255);
    text-decoration: none;
}

a:hover {
    color: blue;
}

.intro {
    background-image: url("../images/background.svg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.intro h1 {
    font-size: 3rem;
}

.intro p {
    font-size: 1.2rem;
}

.intro img {
    border: 4px solid white;
    border-radius: 50%;
    max-width: min(250px, 80%)
}

.intro-icons {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.content {
    margin-top: 2rem;
    margin-bottom: 2rem;
    margin-left: auto;
    margin-right: auto;
    max-width: 800px;
    padding: 0 1rem;
}

.content p {
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.content hr {
    border: none;
    border-top: 1px solid #ccc;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.entry {
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.entry p {
    margin-top: 0.2rem;
    margin-bottom: 0.2rem;
}

.title {
    font-weight: bold;
}

.date {
    color: rgb(151, 0, 118);
}

.footer {
    background-color: black;
    color: white;
    padding: 0.5rem;
    text-align: center;
}