@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Outfit", sans-serif;
    background-color: #0d192bff;
}

.main-container {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card {
    max-width: 300px;
    padding: 1.3em;
    border-radius: 10px;
    background-color: #14253dff;
}

.card-img {
    width: 100%;
    border-radius: 10px;
}

h1 {
    color: white;
    font-weight: 400;
    font-size: 1.3em;
    margin: 0.5em 0;
}

h1:hover {
    color: #00fff7ff;
    cursor: pointer;
}

.resume {
    color: rgba(139, 172, 218, 0.76);
    margin-bottom: 1.3em;
}

.icons-section {
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1em;
}

.left, .right {
    display: flex;
    gap: 0.5em;
    font-size: 0.8em;
}

.left-text {
    color: #00fff7ff;
}

.right-text {
     color: rgba(139, 172, 218, 0.76);
}

hr {
    border-color: rgba(255, 255, 255, 0.13);
    margin-bottom: 1.3em;
}

footer {
    display: flex;
    align-items: center;
}

footer img {
    width: 30px;
    border-radius: 50%;
    border: 1px solid white;
    margin-right: 0.8em;
}

.creator {
    color: rgba(139, 172, 218, 0.76);
    margin-right: 5px;
}

.author {
    color: rgba(255, 255, 255, 0.774);
    text-decoration: none;
}

.author:hover {
    color: #00fff7ff;
}