body{
    margin: 0;
height: 100%;
width: 100%;
background-color:#000099;
overflow: hidden;
}

h1, h2, h3, h4, h5, h6, li, p, span, a, button {
    font-family: century-gothic, helvetica, arial, sans-serif;
    margin: 0px;
    padding: 0px;
}


h1{
    color: white;
    word-wrap: normal;
    font-size: 4vw;
  }

h2{
    color: #000099;
    font-size: xx-large;
}

h3{
    color:#000099;
}

h4{
    color: #59DDB6;
    font-weight: 800;
}

button{
    display: flex;
    justify-content: center;
    width: 100%;
    border: 0px;
    border-radius: 15px;
    background-color: #59DDB6;
    color: #000099;
    cursor: pointer;
}

button:hover{
    border: 2px solid #59DDB6;
    border-radius: 15px;
    background-color: white;
}

.home-grid{
    margin: auto;
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;

}

.activities{
    display: flex;
    justify-content: center;
}

.header-holder{
    position:relative;
    width:max-content;
    margin: auto;
}

.headline{
    width: 100%;
    display: flex;
    justify-content: center;
}


.headline img{
    z-index: -1;
    width: 33%;
    bottom: 5%;
}

.activity{
    flex-grow: 0;
    flex-shrink: 1;
    width: calc(33% - (30px * 3 ));
    margin: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 10px;
    background-color: white;
    border-radius: 20px;
    box-shadow: 5px 5px rgba(54, 37, 37, 0.171);
    padding: 30px;
    min-height: 30vh;

}

.task-num{
    padding-bottom: 5px;
}

.task-name{
    padding-bottom: 40px;
}

.task-button button{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
}

.footer{
    width: 100vw;
}

@media only screen and (max-width: 1000px) {
    .activities{
        flex-direction: column;
    }
    body{
        overflow-y: scroll;
    }
    .activity{
        width: calc(100% - 120px);
    }
  } 