:root {
    --GreyBlack: #3C3C3C;
    --Grey: #606060;
    --White: #F5F5F5;
    --RedPink: #FF5A5F;
    --BlueGreen: #087E8B;
}

@font-face {
    font-family: 'Slackside One';
    src: url(../fonts/SlacksideOne-Regular.ttf);
}

* {
    margin: 0;
    padding: 0;
    line-height: 90.8%;
    color: var(--Grey);
    font-size: 1.7rem;
    font-family: 'Slackside One';
    list-style: none;
    text-decoration: none;
}

::-webkit-scrollbar {
    height: 6px;
    width: 6px;
}

::-webkit-scrollbar-track {
    background-color: var(--Grey);
}

::-webkit-scrollbar-thumb {
    background-color: var(--RedPink);
    border-radius: 5px;
}

body {
    width: 100%;
    min-height: 100vh;
    background-color: var(--White);
}

header {
    padding: 10px;
    background-color: var(--GreyBlack);
    border-radius: 0 0 25px 25px;
    box-shadow: 0px 0px 15px 0px var(--GreyBlack);
}

nav {
    padding: 0 62px;
    display: flex;
    justify-content: space-between;
}

h1 {
    margin-bottom: 12px;
    color: var(--RedPink);
}

ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

ul li a img {
    width: 35px;
    height: 35px;
}

main {
    padding: 15px 105px;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
}

h2 {
    margin-bottom: 10px;
    font-size: .8em;
}

p {
    font-size: .7em;
    margin-bottom: 20px;
}

span, a {
    font-size: 1em;
}

.RedPink {
    color: var(--RedPink);
}

.BlueGreen {
    color: var(--BlueGreen);
}

.Linkedin {
    text-decoration: underline;
}

.Linkedin:hover {
    text-decoration: none;
}

section {
    width: 100%;
    margin-top: 10px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

section div {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    border-radius: 15px;
    border: 4px solid var(--GreyBlack);
    box-shadow: 0px 0px 15px 0px var(--GreyBlack);
}

section div h3 {
    color: var(--GreyBlack);
    font-size: .7em;
}

section div img {
    border-radius: 0 0 10px 10px;
}