*{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

@font-face {
    font-family: main-font;
    src: url("../assets/fonts/ArbFONTS-LamaSans-Medium.ttf");
}

body{
    font-family: main-font;
}

header{
    width: 100%;
    height: 70px;
}

header .logo{
    width: 200px;
    height: 70px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

header .logo .img{
    width: 70px;
    height: auto;
}

header .logo .img img{
    width: 70px;
    height: 50px;
}

header .logo .company-name{
    width: 127px;
    height: auto;
}

header .logo .company-name h1{
    font-size: main-font;
    font-size: 17px;
    width: 100%;
    height: 100%;
}

.page-content{
    width: 371px;
    height: 390px;
    margin: 151px auto 0px;
    text-align: center;
    animation: beat 10s infinite  linear;
}

.page-content .logo{
    width: 371px;
    height: auto;
}

.page-content .logo img{
    width: 371px;
    height: 271px;
}

.page-content h2{
    text-transform: capitalize;
    font-weight: 900;
    font-size: 50px;
}

footer{
    width: 100%;
    height: 100px;
    margin-top: 77px;
    padding: 0px 17px;
}

footer ul{
    list-style: none;
}

footer ul li{
    margin: 17px 0px;
    font-size: 21px;
    font-weight: 700;
}

a{
    width: 171px;
    height: 50px;
    border: 3px solid #000;
    border-radius: 17px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-transform: capitalize;
    text-decoration: none;
    color: #f00;
    font-size: 21px;
    font-weight: 700;
}

@keyframes beat {
    0%{
        transform: scale(1) translateY(0);
    }
    50%{
        transform: scale(1.05) translateY(-50px);
    }
    100%{
        transform: scale(1) translateY(0);
    }
}

@media (min-width: 500px) {
    footer ul li{
        width: 300px;
        margin: 17px auto;
        text-align: center;
    }

    a{
        margin: 0px auto;
    }
}