.app__header {
    background: var(--background);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    user-select: none;
}

.app__header h1 {
    font-size: 86px;
    text-transform: uppercase;
    color: var(--color-textHeading);
}

.app__header p {
    font-size: 22px;
    width: 50%;
    text-align: center;
    margin: 3rem 0 4rem 0;
    color: var(--color-text);
}

@media screen and (max-width: 1250px) {

}

@media screen and (max-width: 950px) {
    .app__header h1 {
        font-size: 62px;
        padding: 0 1rem;
        text-align: center;
    }

    .app__header p {
        font-size: 18px;
    }
}

@media screen and (max-width: 570px) {
    
    .app__header h1 {
        font-size: 40px;
        margin: 0 0.5rem;
        text-align: center;
    }

    .app__header p {
        font-size: 16px;
        width: 80%;
        margin: 1rem 0;
    }
}

@media screen and (max-width: 350px) {
    #app__header-button {
        width: 200px;
    }
}

.app__sideBar {
    position: absolute;
    left: 0;
    top: 45%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 0.5rem;
    background-color: #282A3A;
    border-radius: 5px;
}

.app__sideBar-icon {
    color: var(--color-textHeading);
    margin: 1rem 0.5rem;
    width: 30px;
    height: 30px;
    font-size: 30px;
    display: flex;
    justify-content: center;
    align-items: center;

}

.app__sideBar-icon:hover {
    color: var(--color-10);
}

.app__sideBar-icon:active {
    color: var(--color-30);
}

@media screen and (max-width: 700px) {
    .app__sideBar {
        position: relative;
        top:auto;
        left: auto;
        flex-direction: row;
        margin: 3rem 0;
    }

    .app__sideBar-icon {
        margin: 1rem 0.5rem;
    }
}