:root {
    --primary: #1070DE;
    --light: #5497E3;
    --dark: #07305E;
}

* {
    vertical-align: baseline;
    font-weight: inherit;
    font-family: inherit;
    font-style: inherit;
    border: 0 none;
    outline: 0;
    padding: 0;
    margin: 0;
}

body {
    margin: 0 auto;
    line-height: 1.5;
    background-color: #eee;
    margin-top: 5rem;
    margin-left: auto;
    margin-right: auto;
    font-family: monospace;
    max-width: 1200px;
}

main {
    display: flex;
    flex-direction: column;
}

.title {
    font-family: 'Arial', sans-serif;
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 2rem;
}


.content__link, .content__link:visited,.content__link:hover, .content__link:focus, .content__link:active {
    color: var(--primary);
    text-decoration: none;
}

.content__link {
    box-shadow: inset 0px -3px 0px 0px var(--light);
    display: inline-block;
    padding: 0.2rem;
    transition: background 0.1s cubic-bezier(.25, .8, .25, 1), color 0.1s cubic-bezier(.25, .8, .25, 1);
}

.content__link.link:hover, 
.content__link.link:focus {
    background: var(--light);
    color: white;
    font-weight: 800;
}

.content__link.link:active {
    color: #FF351C;
}

.content__text {
    font-size: 1.2rem;
}

