/* ~ This is specifically for the phone shell */

body {
    display: flex;
    font-family: var(--fontStack);
    padding: 10px;
    position: relative;
}

#phoneWrapper {
    display: flex;
    flex-flow: column wrap;

    width: 100vw;
    height: 600px;

    background-color: var(--pinkIce);
    border: 10px solid black;
    outline: 10px solid var(--dustyPink);
    border-radius: 30px;

    overflow: hidden;
}

#lusterToast {
    position: absolute;
    top: 15px;
    left: 50%;
    z-index: 2000;
    transform: translate(-50%, -20px);

    display: flex;
    align-items: center;
    gap: 8px;

    width: 85%;
    max-width: 340px;
    padding: 8px 12px;

    background: #8266ffea;
    color: white;
    border: 2px solid white;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);

    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.75em;
    text-align: left;

    opacity: 0;
    transition: opacity 0.35s ease, transform 0.35s ease;
    pointer-events: none;
}

#lusterToast.show {
    opacity: 1;
    transform: translate(-50%, 70px);
}

#lusterToast img {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

#lusterToast p {
    margin: 0;
    opacity: 1;
}

header,
footer {
    display: flex;
    justify-content: center;
    align-items: center;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 1.3em;
    color: white;

    background-color: black;
    padding: 10px;
}

header {
    height: 25px;
    color: var(--wisteria);
}

header p {
    user-select: none;
    pointer-events: none;
}

footer {
    height: 60px;
}

main {
    flex: 1 1;
}

#camera {
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);


    width: 80px;
    height: 25px;

    display: flex;
    justify-content: center;
    align-items: center;

    background-color: black;
    border-radius: 0 0 999px 999px;
}

#camera iconify-icon {
    font-size: .7em;
    color: rgba(108, 120, 255, 0.386);
}

#phoneScreen {
    height: 100%;
    width: 100%;
}

#homeButton {
    display: flex;
    justify-content: center;
    align-items: center;

    text-decoration: none;
    font-family: "Noto Emoji";

    background-color: #303030;
    color: white;
    border: 3px solid var(--dustyPink);
    height: 40px;
    width: 40px;
    border-radius: 999px;
}