* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter';
    transition: all 200ms;
}

body {
    background-color: #23252C;
    color: white;
}

.container {
    max-width: 320px;
    margin: 50px auto;
    background: #1A1B21;
    border-radius: 20px;
}

header {
    text-align: center;
}

header > h1 {
    margin-top: 5px;
    font-size: 25px;
}

header > p {
    color: #F3BF99;
    font-size: 15px;
}

header > img {
    max-width: 100%;
    border-radius: 20px 20px 0px 0px;
}

header a {
    text-decoration: none;
    color: #F5F5F5;
    font-size: 10px;
}

nav {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
}

nav > a {
    margin: 0px 10px;
    padding: 10px 20px;
    background-color: white;
    color: #1A1B21;
    border-radius: 10px;
    text-decoration: none;
}

nav > a:hover {
    filter: brightness(80%);
} 

nav > a > i {
    margin-right: 5px;
}

.linkedin-link {
    color: white;
    background: #5093E2;
}

main {
    margin: 20px 30px;
}

main > h3 {
    font-size: 15px;
    margin-bottom: 5px;
}

main > p {
    font-size: 10px;
    line-height: 150%;
    color: #DCDCDC;
    margin-bottom: 10px;
}

footer {
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #161619;
    border-radius: 0px 0px 20px 20px;
}

footer > a {
    margin: auto 10px;
    color: #918E9B;
}

footer > a:hover {
    filter: brightness(150%);
}