html {
    height: 100%;
    background-color: #0e0e0e;
}

body {
    background-color: #0e0e0e;
    color: white;
    font-family: 'Raleway', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
}

.container {
    width: 75%;
    margin: auto;
}

.start {
    width: 100%;
    height: auto;
}

.start img {
    width: 600px;
}

.bg {
    background-image: url("./images/bg.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    overflow-x: hidden;
}

.lernMore {
    position: fixed;
    top: 80vh;
    width: 100vw;
    text-align: center;
}

.lernMore button {
    padding: 8px 25px;
    border: solid #999999 2px;
    background-color: transparent;
    color: #999999;
    height: max-content;
    vertical-align: middle;
    margin-top: auto;
    margin-bottom: auto;
    font-size: 1.2em;
    border-radius: 25px;
    transition-duration: 200ms;
}

.selectText {
    font-size: 3em;
    color: #999999;
    font-weight: 500;
}

.lernMore button:hover {
    border: solid #ffffff 2px;
    background-color: #ffffff67;
    color: #ffffff;
}

.selectButton {
    border: none;
    background-color: transparent;
    color: #d4d4d4;
    font-weight: 700;
    font-size: 3.5em;
    transition-duration: 200ms;
    text-align: left;
}

.selectButton:hover {
    padding-left: 35px;
    color: #ffffff;
}

.sum {
    background-color: #191919;
    padding: 11px;
    padding-left: 20px;
    padding-right: 20px;
    margin: 0px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 1.2em;
    border: solid 2px #191919;
    transition-duration: 200ms;
}

.sum:hover {
    border: solid 2px #76F066;
}

.itemHolder {
    display: flex;
    max-width: 100%;
    overflow-x: auto;
}

.itemImage img {
    max-width: 120px;
    margin: auto;
    align-items: center;
}

.itemImage {
    width: 165px;
    height: 165px;
    align-items: center;
    display: flex;
    background-color: #1d1d1d;
    border: none;
    border-radius: 25px 25px 0px 0px;
}

.item {
    background-color: #262626;
    border: none;
    border-radius: 25px;
    width: max-content;
    margin: 10px;
    margin-right: 0;
}

.item span {
    color: #999999;
    font-weight: 300;
    font-size: 0.8em;
}

.item p {
    margin: auto;
    margin-bottom: 5px;
    color: #999999;
}

.item h4 {
    margin: auto;
    margin-bottom: 5px;
    color: #e7e7e7;
}

.item button {
    color: #d4d4d4;
    background-color: #3b3b3b;
    border: solid 2px #3b3b3b;
    border-radius: 10px;
    padding: 5px 8px;
    font-weight: 700;
    width: 100%;
    transition-duration: 200ms;
}

.item button:hover {
    color: #76F066;
    background-color: #3b3b3b;
    border: solid 2px #76F066;
    border-radius: 10px;
    padding: 5px 8px;
    font-weight: 700;
    width: 100%;
}

.cTop {
    background-color: #191919;
    padding: 3px;
    padding-left: 20px;
    padding-right: 20px;
    margin: 0px;
    border: none;
    border-radius: 25px 25px 0px 0px;
}

.cBottom {
    background-color: #303030;
    margin: 0px;
    padding: 3px;
    padding-left: 20px;
    padding-right: 20px;
    border-radius: 0px 0px 25px 25px;
    color: #999999;
}

.aboutImageHolder {
    text-align: center;
    margin-right: 25px;
}

.aboutImageHolder img {
    border-radius: 25px;
    max-width: 250px;
}

.ab1 {
    display: flex;
    flex-direction: row;
    height: max-content;
    margin-bottom: 25px;
}

@media only screen and (max-width: 1000px) {
    .start img {
        width: 75vw;
    }
    .container {
        width: 95%;
    }
    .selectButton {
        font-size: 2.4em;
    }
    .selectText {
        font-size: 1.5em;
        color: #999999;
    }
    .ab1 {
        display: flex;
        flex-direction: column;
    }
    .aboutImageHolder {
        margin-right: 0;
        margin-bottom: 25px;
    }
}