@font-face {
    font-family: 'Parisine';
    /*a name to be used later*/
    src: url('/assets/fonts/parisine.ttf');
    /*URL to font*/
}

@font-face {
    font-family: 'Parisine-Thin';
    /*a name to be used later*/
    src: url('/assets/fonts/parisine-thin.ttf');
    /*URL to font*/
}

@font-face {
    font-family: 'Parisine-Bold';
    /*a name to be used later*/
    src: url('/assets/fonts/parisine-bold.ttf');
    /*URL to font*/
}

body {
    border: 0;
    padding: 0;
    margin: 0;
    background-color: white;
}

body.dark {
    background-color: black;
}

h1 {
    font-family: 'Parisine';
    font-size: 2.25rem;
    font-weight: bold;
    padding-right: 80px;
}

p {
    font-family: 'Parisine';
    font-size: 1.125rem;
    line-height: 1.75rem;
    padding-right: 80px;
}

span {
    transition: all 0.2s ease;
}

.app {
    font-family: 'Parisine-Thin';
    scroll-snap-type: y mandatory;
    overflow-y: scroll;
    height: 100vh;
}

.headbar {
    background-color: white;
    height: 20px;
    padding-top: 2rem;
    padding-bottom: 2rem;
    padding: 2rem 64px 2rem 64px;
    display: flex;
    align-items: center;
    position: fixed;
    width: calc(100% - 128px);
    transition: all 0.2s ease;

}

.headbar.dark {
    background-color: black;
    color: #e7e9ea;
}

.headbar>.content {
    display: flex;
    margin-left: auto;
    margin-right: auto;
    max-width: 1200px;
    width: 100%;
    justify-content: space-between;
}

.section>.content>.left>.group-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 30px;
}

.headbar>.content>.group-link {
    display: flex;
    gap: 20px;
    align-items: center;
}

.section {
    display: flex;
    height: 100vh;
    min-height: 700px;
    scroll-snap-align: start;
}

.section.dark {
    background: black;
    color: #e7e9ea;
}

.section>.content {
    display: flex;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 64px;
}

span.contact {
    font-weight: 500;
    font-family: 'Parisine';
    line-height: 56px;
    height: 100%;
    cursor: pointer;
}

.contact.flex {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.contact.flex:hover {
    font-size: 17px;
}

.row.down {
    display: flex;
    width: 10px;
    margin-top: 3px;
    transition: all 0.2s ease;
}

.contact.flex:hover .row.down {
    width: 11px;
}

button {
    all: unset;
    width: 190px;
    height: 17px;
    border-radius: 10px;
    background-color: #00AE94;
    color: white;
    display: flex;
    justify-content: space-between;
    padding: 10px 20px;
    font-weight: 300;
    font-size: 15px;
    font-family: 'Parisine';
    cursor: pointer;
    line-height: 14px;
    border: 1px solid #00AE94;
    transition: all 0.2s ease;
}

button.dark {
    background-color: black;
    border: 2px solid #00AE94;
}

button.contact.first {
    border-top: 2px solid #282828;
}

button.contact {
    font-family: Helvetica, Arial, sans-serif;
    font-size: 25px;
    font-weight: 100;
    height: 106px;
    width: 100%;
    background-color: unset;
    border-radius: 0;
    border: 0;
    border-bottom: 1px solid #282828;
    box-shadow: unset;
    line-height: unset;
    align-items: center;
    padding: 0;
}

button.contact:hover {
    box-shadow: unset;
}

button.contact:hover span {
    padding: 10px;
}

.link-right {
    transition: all 0.2s ease;
}

button.contact:hover .link-right {
    padding: 10px;
}

button:hover {
    box-shadow: 0px 4px 6px #00ae9436, 0px 1px 3px #00ae9436;
}

button.dark:hover {
    background-color: #00AE94;
}


button.contact>.link-right {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 20px;
    color: #757575;
}

.left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 60%;
    height: 100%;
}

.right {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    width: 40%;
    height: 100%;
    min-width: 400px;
}

.right.contact {
    justify-content: center;
}

.tweet-block {
    display: flex;
    height: 65%;
    gap: 12px;
}

.left-tweet {
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 40px;
}

.left-tweet-top {
    display: flex;
    flex-direction: column;
    height: 35%;
    width: 40px;
}

.tweet-logo {
    height: 40px;
    width: 40px;
    border-radius: 100%;
}

.tweet-bar {
    display: flex;
    justify-content: center;
    height: 100%;
}

.tweet-bar>.bar {
    height: 100%;
    width: 2px;
    background-color: rgb(207, 217, 222);
}

.tweet-bar>.bar.dark {
    background: rgb(51, 54, 57);
}


.right-tweet {
    height: 100%;
    width: 100%;
}

.tweet-user {
    font-family: Helvetica, Arial, sans-serif;
    display: flex;
    gap: 4px;
}

.name-user {
    font-weight: 700;
    font-size: 15px;
}

.id-user {
    color: rgb(83, 100, 113);
}

.id-user.dark {
    color: #71767B;
}

.tweet-automated {
    margin-top: 4px;
    margin-left: 4px;
    display: flex;
    height: 18px;
    gap: 7.5px;
}

.tweet-automated>.icon {
    display: flex;
    height: 15px;
}

.tweet-automated>.label {
    height: 15px;
    font-weight: 400;
    color: #536471;
    display: flex;
    align-items: center;
    font-family: Helvetica, Arial, sans-serif;
}

.tweet-automated>.label.dark {
    color: #71767B;
}

.tweet-img {
    margin-top: 12px;
    width: 100%;
    border-radius: 16px;
    border: solid 1px #cfd9de;
}

.tweet-img.dark {
    border-color: rgb(47, 51, 54);
}

.tweet-interact {
    display: flex;
    justify-content: space-between;
    height: 18.75px;
    margin-top: 15px;
}

.tweet-interact>* {
    display: flex;
}

.footer {
    scroll-snap-align: start;
    color: white;
    text-align: center;
    margin: 50px 20px;
}

@media screen and (max-width: 1110px) {
    .headbar {
        scroll-snap-align: start;
        position: relative;
    }

    .section {
        height: unset;
        height: 100vh;
    }

    .section>.content {}

    .left {
        height: 50%;
        width: 100%;
    }

    .right {

        height: 50%;
    }

    .tweet-block {
        height: 100%;
    }

    .app .section:nth-child(2)>.content {
        flex-direction: column;
    }

    .app .section:nth-child(3)>.content {
        flex-direction: column-reverse;
    }

    .app .section:nth-child(4)>.content {
        flex-direction: column;
    }

    .app .section:nth-child(5)>.content {
        flex-direction: column-reverse;
    }

    .app .section:nth-child(6)>.content {
        flex-direction: column;
    }

    .right.contact.pdg {
        width: 100%;
    }
}


@media screen and (max-width: 930px) {
    .app {}

    .app>.headbar {
        padding: 32px 16px
    }

    .app>.section>.content {
        height: 100% !important;
    }

    h1 {
        font-size: 24px;
        padding: 0;
        margin: 0;
    }

    p {
        font-size: 16px;
        padding: 0;
        margin: 0;
    }

    .headbar>.content>.group-link {
        display: none;
    }

    .section>.content {
        padding: 0 16px;
    }

    .right {
        width: 100%;
        min-width: unset;
        max-width: 400px;
    }

    .left {
        align-items: start;
        justify-content: space-evenly;
    }

    .contact.flex:hover {
        font-size: 15px;
    }

    .section>.content>.left>.group-link {
        width: 100%;
        margin: 0;
    }

    .pdg {
        padding-bottom: 80px;
    }


    .left>.group-link>button {
        font-size: 15px;
        height: 15px;
        width: 175px;
    }



    .left>.group-link>span {
        font-family: Helvetica, Arial, sans-serif;
        font-size: 15px;
        min-width: 110px;
    }

    .left>.group-link>span:focus {
        background-color: blue;
    }

    .right.contact.pdg {
        min-width: 100%;
    }

    .right.contact.pdg>.contact>span {
        font-size: 18px;
    }

    .right.contact.pdg>.link-right>span {
        font-size: 18px;
    }

    .left-tweet-top {
        height: 20px;
    }
}