body{
    background-color: antiquewhite;
    margin: 0;
    margin-bottom: 0;
}

@font-face {
    font-family: 'PTmono';
    src: url('fonts/PTMono-Regular.ttf');
}

@font-face {
    font-family: 'Andalemo';
    src: url('fonts/ANDALEMO.TTF');
}
.span{
    width: 100%;
    background-color: #fff;
    left: 0px;
    right: 0px;
}

.center{
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.left{
    position: absolute;
    left: 0px;
}

.right{
    position: absolute;
    right: 0px;
}

.logo{
    width: 300px;
    height: auto;
    padding-top: 50px;
}

.logo:hover{
                
    animation-name: wiggle;
    animation-duration: .5s;
    
}

@keyframes wiggle {
    0%{transform: rotate(0deg);}
    25%{transform: rotate(5deg);}
    50%{transform: rotate(-5deg);}
    75%{transform: rotate(2deg);}
    100%{transform: rotate(0deg);}
}

.hedder{
    top: 0px;
    height: 200px;
}

.footer{
    bottom: 0px;
    height: 300px;
    margin:0px;
    color: #fff;
    font-weight: bold;
}

.item{
    height: 500px;
    position: relative;
    border: 10px;
}

.text{
    width: 50%;
    text-align: center;
    padding: 70px 0;
}

.text p{
    font-family: 'PTmono';
    font-size: 13pt;
    padding-left: 20px;
    padding-right: 20px;
}

.text h1{
    font-family: 'Andalemo';
    font-size: 35pt;
    font-weight: bold;
    padding-left: 20px;
    padding-right: 20px;
    color: #ac2020;
}

.image{
    width: 50%;
    height: 500px;
    background-size: cover;
    background-position: center;
}

.tag{
    height: 50px;
    margin-top: 0px;
    animation: scrolling 100s linear infinite;
    background-image: url('img/job.png');
    background-size: contain;
    position: absolute;
    background-color: rgba(0, 0, 0, 0);
}

@keyframes scrolling {
    from{
        background-position: 0 0;
    }
    to{
        background-position: -800% 0%;
    }
    }

.tagbg{
    min-height:100%;
    background: 
    linear-gradient(rgba(255,0,0,1) 0%, rgba(255,154,0,1) 10%, rgba(208,222,33,1) 20%, rgba(79,220,74,1) 30%, rgba(63,218,216,1) 40%, rgba(47,201,226,1) 50%, rgba(28,127,238,1) 60%, rgba(95,21,242,1) 70%, rgba(186,12,248,1) 80%, rgba(251,7,217,1) 90%, rgba(255,0,0,1) 100%) 
    0 0/100% 200%;
    animation: rainbow 2s linear infinite;
    height: 50px;
    width: 100%;
    z-index: -1;
    position: absolute;
}

@keyframes rainbow {
    from{
        background-position: 0 0;
    }
    to{
        background-position: 200% 200%;
    }
}

.tagcon{
    display: relative;
    height: 50px
}

.hover p{
    opacity: 0%;
    font-family: 'PTmono';
    color: white;
    background-color: rgb(172, 32, 32, .7);
    transition: all .2s;
    width: 100%;
    height: 100%;
    margin: 0px;
    font-size: 20pt;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    text-align: center;
}

.hover p:hover{
    opacity: 100%;
}

a{
    color: #ac2020;
    text-decoration: none;
    font-family: 'PTmono';
    transition: color .2s;
}

a:hover{
    color: #d14a4a;
}

.footer a{
    color: #fff;
    text-decoration: underline;
    font-family: 'PTmono';
    transition: color .2s;
}

.footer a:hover{
    color: #bbbbbb;
}