@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500&display=swap');

* {
    font-family: 'Poppins', sans-serif;
    padding: 0;
    margin: 0;
    color: #ffffff;


    -webkit-animation: fadein 2s; /* Safari, Chrome and Opera > 12.1 */
    -moz-animation: fadein 2s; /* Firefox < 16 */
    -ms-animation: fadein 2s; /* Internet Explorer */
    -o-animation: fadein 2s; /* Opera < 12.1 */
    animation: fadein 2s;
}

a, a:hover, a:focus {
    color: #ffffff;
    text-decoration: none;
}
.main {
    background-color: rgba(0, 0, 0, 0);
    background-repeat: no-repeat;
    background-image: url('../img/bg.jpg');
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 100vh;
    opacity: 1;
    visibility: inherit;
    z-index: 20;
}
.container {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    height: 100vh;
    flex-wrap: wrap;
}
.item {
    max-width: 50%;
    text-align: center;
}
.item.m-dnone {
    display: none;
}

img.logo {
    max-width: 25%;
    height: auto;
}
img.claim {
    max-width: 70%;
    height: auto;
}
.item p {
    line-height: 2rem;
}
small {
    margin-top: 1rem;
}
@media (max-width: 1000px) {

    img.logo.s-dnone {
        display: none;
    }
    .item {
        max-width: 100%;
        width: 100%;
    }
    .item.m-dnone {
        display: block;
    }
    img.logo {
         max-width: 50%;
     }
}

@keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Firefox < 16 */
@-moz-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Safari, Chrome and Opera > 12.1 */
@-webkit-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Internet Explorer */
@-ms-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Opera < 12.1 */
@-o-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}
