:root {
    --background-color: #006e6e;
    --background-color-alternative: #dfd5cc;
    --background-linear : linear-gradient(180deg, #a7e92f, #a7e92f, #58dbef);
    --text-main: #a7e92f;
}

body {
    cursor: pointer;
    background-color: var(--background-color);
}

.section1 {
    background-color: var(--background-color);
}


header {
    height: 58px;
    width: 400px;
    background-color: #ffffff32;
    border-radius: 100px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 30px;
    padding-top: 0px;
}

.container {
        height: 550px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    

.title {
    margin: auto;
    padding: 5px 10px 5px 10px;;
    color : #009e91;
    justify-content: center;
    align-items: center;
    font-size: 50px;
    font-weight: 700;
    background: #fff;
    border-radius: 10px;
    border: 2px solid #008b61;;
}

.title:hover {
    background-color: #00dc9e;
    color: #fff;
}

.item-container {
    margin-top: 20px;
    justify-content: center;
    text-align: center;
}

.item {
    display: inline;
    color: #3d3d3d;
    background-color: #fff;
    padding: 10px;
    text-align: center;
    border-radius: 20px;
    height: 30px;
    border: 2px solid #008b61;
    box-shadow: 0 7px 18px -8px rgba(0, 0, 0, 0.44);
}

@media (max-width: 600px) {
    .title {
        font-size: 40px;
    }

    .item {
        font-size: 15px;
    }
}