body {
    background: linear-gradient(-45deg,#ee52cc,#1a49af,#1dbd97,#e9dd33);
    background-size: 400% 1200%;
    animation: gradient 10s ease infinite;
    font-size: 1rem;
}
@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 70% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}
header {
    display: block;
    font-family: 'Staatliches', cursive;
}
.header-container{
    margin: 30px auto 30px auto;
    width: 940px;
    text-align: center;
}
@media screen and (max-width:559px) {
    .navi-menu{
        display: none;
    }
}
.navi-menu ul{
    display: flex;
    justify-content: space-between;
}
.navi-menu a{
    position: relative;
    text-decoration: none;
    color: hsl(73, 100%, 85%);
}

.navi-menu li{
    list-style: none;
}
.header-container-small{
    display: none;
}
.navi-menu-hamburger{
    display: none;
}
@media screen and (max-width:559px) {
    .header-container-small{
        width: 100%;
        display: block;
        position: relative;
    }
    .header-container-small button{
        background: transparent;
        border-color: transparent;
        position: absolute;
        right: 0;
        z-index: 10;
        color: hsl(323, 100%, 85%);
    }
    .navi-menu-hamburger.active{
        display: block;
        position: absolute;
        margin-top: 50px;
        right: 0;
        z-index: 10;
        width: 100%;
    }
    .navi-menu-hamburger ul{
        padding-inline-start: 0px;
    }
    .navi-menu-hamburger li{
        opacity: 0.8;
        background-color: black;
        list-style: none;
        text-decoration: none;
        text-align: center;
        font-size: xx-large;
        padding-top: 10px;
        padding-bottom: 10px;
        color: rgb(241, 255, 160);
    }
    .navi-menu-hamburger a{
        text-decoration: none;
        
    }
}
main {
    width: 100%;

    display: flex;
    align-items: center;
}
.index{
    margin: 0 auto;
}
.top-view{
    width: 940px;
    height: 100vh;
    position: relative;
    font-family: 'Staatliches', cursive;
    color: hsl(73, 100%, 85%);
}
.title1{
    font-size: 3rem;
    position: absolute;
    left:0;
    bottom: 40vh;
}
.title2{
    font-size: 3rem;
    position: absolute;
    right: 0;
    bottom: 20vh;
}
@media screen and (max-width:559px) {
    .top-view{
        width: 100%;
    }
    .title1{
        font-size: 2rem;
        left:20px;
        bottom: 40vh;
    }
    .title2{
        font-size: 2rem;
        right: 20px;
        bottom: 20vh;
    }
}
.about-container{
    align-items: center;
}
h2{
    text-align: center;
    font-family: 'Staatliches', cursive;
    color: hsl(73, 100%, 85%);
}
.about{
    background: #fff;
    border-radius: 10px;
    margin:10px;
    padding: 10px;

}
.half-pad{
    height: 50vh;
}
.skills-container h2{
    text-align: center;
}
.work-container{
    display:flex;
    flex-flow: column;
    align-items: center;
}
.work-card-container{
    background-color: #fff;
    margin: 50px;
    padding: 50px;
    border-radius: 10px;
    text-align: center;
    display:flex;
    flex-flow: column;
    align-items: center;
}
.work-card-container h3{
    text-align: center;
}
.work-card-container p{
    text-align: left;
    width: 50vw;
   
}
.work-card-img{
    width: 50vw;
    box-shadow: 4px 4px 4px gray;
}
@media screen and (max-width:559px) {
    .work-card-container{
        margin: 10px;
        padding: 10px;
        border-radius: 10px;
    }
    .work-card-container p{
        width: 70vw;
       
    }
    .work-card-img{
        width: 70vw;
    }
}
.cards-container{
    width: 940px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
@media screen and (max-width:559px){
    .cards-container{
        width: 280px;
        margin: 50px auto;
    }
}
.card-container{
    width: 300px;
    height: 400px;
    background-color: #fff;
    margin-bottom: 50px;
    border-radius: 10px;
    text-align: center;
}
@media screen and (max-width:559px){
    .card-container{
        width: 100%;
        height: auto;
    }
}
.card {
    margin: 30px;
}
.card img{
    height: 100px;
    width: auto;
}
.card h3{
    text-align: center;
}
.card p{
    text-align: left;
}

footer{
    height: 50px;
    width: 100%;
    text-align: center;
    position: relative;
    color: rgb(255, 255, 255);
}
