@import "https://fonts.googleapis.com/css2?family=Blinker:wght@100;200;300;400;600;700;800;900&display=swap";

:root {
    --blue: #173F93;
    --red: #E30313;
    --gray1: #ececec;
    --gray2: #ced4da;
    --gray3: #757575;
    --white: #fff;
    font-family: 'Blinker', sans-serif
}

.red {
    color: var(--red)
}

.blue {
    color: var(--blue)
}

.white {
    color: var(--white)
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

body {
    max-width: 500px;
    margin: auto;
    background-color: var(--gray1);
    display: flex;
    flex-direction: column;
    text-align: center;
    max-width: 500px;
    padding: 1rem;
    gap: 1rem
}

header {
    display: flex;
    justify-content: center;
    padding: 3rem 0 0 0;
}

main {
    justify-content: center;
    display: flex;
    gap: 1rem;
    flex-direction: column;
    align-items: center;
    padding: 1rem 0
}

.propic {
    height: 80px;
    width: 80px;
    margin-bottom: 1rem;
}

h2 {
    color: var(--white);
    text-decoration: none;
}

h3 {
    text-transform: uppercase
}

p {
    font-weight: 700;
    color: var(--gray3)
}

.title {
    padding-top: 1rem;
}

.intro {
    display: flex;
    align-items: center;
    flex-direction: column;
}

.main-button {
    display: flex;
    padding: 16px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    align-self: stretch;
    border-radius: 8px;
    background: var(--blue);
    text-decoration: none
}

.secondary-button {
    display: flex;
    padding: 1rem;
    justify-content: center;
    align-items: center;
    gap: .5rem;
    align-self: stretch;
    border-radius: .5rem;
    background: var(--red);
    text-decoration: none;
    color: var(--white);
    font-weight: 700;
    font-size: 1rem;
}

.secondary-button img {
    height: 2rem;
}

.link {
    font-size: 1.25rem;
    color: red;
    padding: 2rem;
    width: 100%;
}

.social-container {
    display: flex;
    align-items: center;
    padding-bottom: 1rem;
}

.social-container a {
    padding: 1rem;
    display: flex;
    justify-content: center;
}

footer {
    display: flex;
    justify-content: space-between;
    align-items: end;
}

footer img {
    width: 30%;
}