@font-face {
    font-family: "Inter UI";
    font-style: normal;
    font-weight: 400;
    src: url("../fonts/Inter-UI-Regular.otf") format("opentype"),
        url("../fonts/Inter-UI-Regular.woff2") format("woff2"),
        url("../fonts/Inter-UI-Regular.woff") format("woff"),
        url("../fonts/Inter-UI-Regular.ttf") format("truetype");
    /* Safari, Android, iOS */
}

@font-face {
    font-family: "Inter UI";
    font-style: normal;
    font-weight: 500;
    src: url("../fonts/Inter-UI-SemiBold.otf") format("opentype"),
        url("../fonts/Inter-UI-SemiBold.woff2") format("woff2"),
        url("../fonts/Inter-UI-SemiBold.woff") format("woff"),
        url("../fonts/Inter-UI-SemiBold.ttf") format("truetype");
    /* Safari, Android, iOS */
}

@font-face {
    font-family: "Inter UI";
    font-style: normal;
    font-weight: 700;
    src: url("../fonts/Inter-UI-Bold.otf") format("opentype"),
        url("../fonts/Inter-UI-Bold.woff2") format("woff2"),
        url("../fonts/Inter-UI-Bold.woff") format("woff"),
        url("../fonts/Inter-UI-Bold.ttf") format("truetype");
    /* Safari, Android, iOS */
}

body {
    background-color: #ebf6f5;
    padding: 0;
    margin: 0;
    font-family: "Inter UI", -apple-system, Arial, sans-serif;
}

header {
    height: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #008d7f;
}

header .logo {
    width: 200px;
    margin: 0 auto;
    display: block;
}

.content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: calc(100vh - 150px);
    max-width: 80%;
    margin: 0 auto;
}

.content h1 {
    text-align: center;
    color: #008d7f;
    font-size: 3.225rem;
    line-height: 2.938rem;
    letter-spacing: -1.17px;
    font-weight: 400;
}

.content p {
    position:relative;
    max-width: 500px;
    margin: 0 auto; 
    text-align: center;
    color: #252631;
    font-weight: 400;
    font-size: 1.325rem;
    line-height: 2rem;
    letter-spacing: -.51px;
}

.content p a {
    color: #41b6e6;
    text-decoration: none;
}

.content p a:hover {
    text-decoration: underline;
}

footer {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    height: 50px;
    background-color: #333836;
    font-size: 1rem;
    color: #fff;
}

footer a {
    color: #fff;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

.list-inline {
    list-style: none;
    margin: 0;
    padding: 0;
}

.list-inline-item {
    display: inline-block;
    margin: 0 10px;
}

.small {
    font-size: 87.5%;
    font-weight: 400;
}