@font-face {
	font-family: Assasins;
	src: url(../res/fonts/assassins-font/Assassin-2PGw.ttf)
}

body {
    height: 100vh;
    margin: 0;
    overflow: scroll;
    display: flex;
    flex-direction: column;
}

h1 {
    font-size: 48px;
}

h1,
h2 {
    font-weight: extra-bold;
}

h1,
ul,
.header p,
.footer p,
.call-to-action {
    color: #F9FAF8;
}

a {
    text-decoration: none;
    color: inherit;
}

.section {
    padding: 16px 10%;
    gap: 32px;
}

.header,
.footer {
    background-color: #1F2937;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 32px 10%;
}

.footer {
    align-items: center;
    margin-top: auto;
}

.header,
.body .testimonials {
    align-items: stretch;
}

.header .main {
    display: flex;
    flex: 1 1 auto;
    justify-content: space-between;
    align-items: flex-start;
}

.header .main .links {
    display: flex;
    margin-left: auto;
    padding: 0px;
    margin: 0px;
    gap: 24px;
}

.header .sub {
    font-size: 18px;
    color: #E5E7EB;
    display: flex;
    gap: 48px;
}

.header .sub .title {
    font-family: Assasins;
}

.logo img {
    width: 64px;
    height: 64px;
    object-fit: cover;
    mix-blend-mode: exclusion;
    filter: invert(100%);
    -webkit-filter: invert(100%);
}

.links .link {
    font-size: 18px;
    color: #E5E7EB;
}

.links .home {
    font-weight: 1000;
    color: lightblue;
}

.body {
    padding-top: 32px;
}

.items {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.item {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    width: 192px;
    min-width: 192px;
    max-width: 384px;
    padding: 16px;
}

.item:hover {
    background-color: #AAAAAA;
}

.item .image-canvas {
    width: 192px;
    height: 128px;
    border-radius: 8px;
    align-self: center;
}

.item .caption {
    align-self: stretch;
}

.testimonials,
.contents {
    padding: 16px 15%;
}

.testimonials {
    background-color: #E5E7EB;
    color: #1F2937;
    font-size: 36px;
    font-weight: light;
    font-style: italic;
}

.author {
    font-size: 24px;
    font-weight: bold;
    font-style: normal;
    text-align: right;
}

.call-to-action {
    padding: 64px 10%;
}

.call-to-action .canvas {
    border-radius: 16px;
    background-color: #3883F6;
    padding: 16px 32px;
    display: flex;
    gap: 24px;
    justify-content: space-between;
    align-items: center;
}

button.sign-up {
    border-radius: 12px;
    border-color: #F9FAF8;
    background-color: #3883F6;
    color: inherit;
    flex: 0 0 auto;
    padding: 8px 16px;
}

.image-canvas {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.sub .image-canvas {
    display: block;
    border-radius: 8px;
    width: 128px;
    height: 128px;
}

ul {
    list-style-type: none;
}

.title {
    margin: 0px;
}

.call-to-action .title {
    font-size: 24px;
}