@font-face {
    font-family: 'Poppins';
    src: url('./fonts/poppins-bold-webfont.woff2') format('woff2'),
         url('./fonts/poppins-bold-webfont.woff') format('woff');
    font-weight: 700;
    font-style: normal;

}




@font-face {
    font-family: 'Poppins';
    src: url('./fonts/poppins-regular-webfont.woff2') format('woff2'),
         url('./fonts/poppins-regular-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}




@font-face {
    font-family: 'Lora';
    src: url('./fonts/lora-variablefont_wght-webfont.woff2') format('woff2'),
         url('./fonts/lora-variablefont_wght-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}


body {
    background: #163834;
    color: #fff;
    padding: 0;
    margin: 0;
    font-family: 'Poppins', sans-serif;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    height: 100vh;
}


.container {
    max-width: 960px;
    padding: 100px 20px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

header {
    display: flex;
    justify-content: center;
}

.logo {
    max-width: 350px;
}

.logo img {
    width: 100%;
    height: auto;
}

.heading-wrapper {
    max-width: 65%;
    width: 100%;
    display: flex;
    justify-content: center;
    margin: 0 auto;
}

h1 {
    font-family: 'Lora', serif;
    text-align: center;
    font-size: 2rem;
}

h3 {
    text-align: center;
    margin: 0;
    font-size: 1.375rem;
    font-weight: 400;
}

h3 a {
    color: #fff;
    text-decoration: none;
    transition: 0.4s all ease-in-out;
}

h3 a:hover {
    color: #b8d049;
}

h4 {
    font-size: 1.125rem;
    font-weight: 700;
    text-align: center;
    margin: 0;
}

figure.id-image {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 70px;
    margin: 50px auto;
}

figure.id-image img {
    width: 100%;
    height: auto;
}

p {
    text-align: center;
    margin: 0;
}

body::after {
    content: "";
    height: 50px;
    width: 100%;
    background: #b8d049;
    position: absolute;
    bottom: 0;
}

@media only screen and (max-width: 650px) {
    .heading-wrapper {
        max-width: 100%;
    }
}