@import url('https://fonts.googleapis.com/css2?family=Chakra+Petch:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&display=swap');

:root {
    --def-bg-color: rgba(220, 123, 168);
    --border-color: rgba(176, 62, 102);
}

body {
    background-color: var(--def-bg-color);
    justify-content: center;
    align-items: center;
    display: flex;
    flex-direction: row;
    overflow: hidden;
    margin: 0;
    padding: 0;
    height: 100vh;
    width: 100%;
}

h1
{
    font-family: "Chakra Petch", sans-serif;
    font-weight: 600;
    font-style: normal;
}

img
{
    width: 450px;
    height: 450px;
    border: solid 5px var(--border-color);
    border-radius: 5px;
}

div
{
    border: 5px solid rgb(40, 40, 40);
    padding: 10px;
    width: 460px;
    border-radius: 5px;
    background-color: rgba(0, 0, 0, 0.45);
    animation: moveUpAndDown 2s infinite ease-in-out;
}

#noiseCanvas
{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    opacity: 0.2;
}

.content
{
    z-index: 1;
    position: relative;
}

@keyframes moveUpAndDown
{
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(0);
    }
}
