* {
    margin: 0;
    padding: 0;
    border: 0;
    font-family: 'Ubuntu Mono', monospace;
}

body {
    padding: 0;
    margin: 0;
    background-image: url("/assets/img/bkg-full.webp");
    background-repeat: no-repeat, no-repeat;
    background-attachment: fixed, fixed;
    background-size: cover, cover;
    color: #333;
    font-family: Arial, Verdana, Tahoma;
    font-size: 2rem;
    color: white;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.content {
    padding: 20px;
    background-color: hsl(0, 0%, 94%);
    color: hsl(0, 0%, 6%);
    margin-top: 25px;
    margin-bottom: 25px;
    max-width: 768px;
    font-size: 15px;
    justify-content: left;
    box-shadow: 0px 0px 15px hsl(0, 0%, 6%);
}

.content>h3 {
    margin-bottom: 20px;

}

.content>p {
    margin-bottom: 20px;
    text-align: left;
}

.img-cnt {
    display: inline-block;
    max-height: 150px;
    width: 100%;
    background-color: hsl(0, 0%, 74%);
    margin-bottom: 15px;
}

img {
    display: block;
    position: relative;
    max-width: 100%;
    padding: 15px;
    height: auto;
    width: auto;
}

hr {
    height: 5px;
    background-color: hsl(0, 0%, 74%);
    width: 100%;
    margin-bottom: 15px;
}

.btn {
    background-color: hsl(0, 0%, 74%);
    color: hsl(0, 0%, 6%);
    justify-content: center;
    align-items: center;
    height: 40px;
    display: flex;
    font-size: 23px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    transition: 400ms background-color cubic-bezier(0.19, 1, 0.22, 1),
        400ms color cubic-bezier(0.19, 1, 0.22, 1);
}

.btn:hover {
    background-color: hsl(0, 0%, 89%);
    color: hsl(0, 0%, 12%);
}

@import url('https://fonts.googleapis.com/css2?family=PT+Serif:ital,wght@0,400;0,700;1,400&display=swap');