/** @format */

* {
    margin: 0;
    padding: 0;
    font-family: sans-serif;
    font-family: -apple-system, sans-serif;
    letter-spacing: -0.5px;
    box-sizing: border-box;
}

html,
body {
    height: 100%;
    width: 100%;
    font-size: 16px;
}
body {
    display: flex;
    flex-direction: column;
    /* justify-content: center; */
    align-items: center;
    overflow: hidden;
}

.container {
    width: 1000px;
    max-width: 100%;

    display: flex;
    align-items: center;
    justify-content: center;
    overflow: scroll;
    align-items: flex-start;

    /* padding-top: 60px; */
}

.container > .mail {
    width: 600px;
    height: 200vh;
    /* height: 110vh; */
    background-color: #fff;

    box-shadow: 0 0 20px #0000000e;

    display: flex;
    justify-content: center;
    border: double red 5px;
}

.container > .mail > textarea {
    resize: none;
    width: 90%;
    border-radius: 0px;
    border: solid 1px #2d2d2d;

    padding: 10px;
    height: 400px;
    margin-top: 200px;
    font-size: 2rem;
}

.partieUp {
    position: absolute;
    height: 45px;
    width: 800px;

    background-color: #ffffff;
    border-radius: 0px 0px 20px 20px;
    box-shadow: 0 0 10px #00000020;
    top: 0;

    display: none;
}
