
@keyframes pulse {
    0%, to {
        transform: scale(1);
    }
    50% {
        transform: scale(.9);
    }
}
body {
    padding: 0;
    margin: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    min-height: 800px;
    /* display: grid; */
    font-family: "Open Sans", sans-serif;
    justify-items: center;
 
 }
 html{
    height: 100%;
    margin: 0;
 }
.header { 
    display: flex;
    background-color: #000000;
    width: 100%;
    justify-content: space-around;
    align-items: center;
    height: 75px;
}
.header a {
    margin: 20px 0px;
}
.header h1 {
    margin-bottom: 6px;
}
.header p {
    margin-top: 0px;
}
#headerbtn{
    height: 40px;
    cursor: pointer;
}
#logo{
    width: 140px;
    margin: 20px 0px;
}
.content{
    background-image: url(../img/bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: right bottom;

    display: flex;
    flex: 1;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    /* padding: 20px 0; */
    width: 100%;
    padding-top: 5%;
    .row{
       display: flex;
       flex-direction: column;
       align-items: center;
    }
    #character{
        width: 100%;
        max-width: 400px;
    }
}
.action {
    margin-top: 10px;
    img{
       animation: pulse 1s linear infinite;
    }
}
.footer {
    display: grid;
    color: white;
    justify-items: center;
    text-align: center;
    align-content: center;
    background-color: #000000;
    width: 100%;
    padding: 20px 0px;
    img{
        height:40px;
    }
}
.footer a {
    color: #fff;
    text-decoration: underline;
}
.footer p {
    width: 90%;
    margin: 0;
    font-size: 12px;
    padding-top: 10px;
}

@media only screen and (min-width: 1025px)and (max-width: 1640px) {
    .content{
        background-image: url(../img/bg.png);
        background-repeat: no-repeat;
        background-position: right bottom;
        padding-top:4%;
    }
}
@media only screen and (min-width: 768px)and (max-width: 1024px) {
    .content{
        background-image: url(../img/bg.png);
        background-repeat: no-repeat;
        background-position: right bottom;
    }
}
@media only screen and (max-width: 767px) {
    .content{
        padding-top:15%;
    }
    .content{
        background-image: url(../img/bg.png);
        background-repeat: no-repeat;
        background-position: center bottom;
    }
}
