*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

h1{
    color: white;
    margin-bottom: 30px;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    font-size: 50px;
    font-weight: bold;
    text-shadow: 5px 5px 10px rgb(0, 0, 0)
}

.container{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 100vh;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' version='1.1' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns:svgjs='http://svgjs.dev/svgjs' width='1440' height='560' preserveAspectRatio='none' viewBox='0 0 1440 560'%3e%3cg mask='url(%26quot%3b%23SvgjsMask1000%26quot%3b)' fill='none'%3e%3crect width='1440' height='560' x='0' y='0' fill='%230e2a47'%3e%3c/rect%3e%3cpath d='M -829.4038628942285%2c244 C -733.4%2c285 -541.4%2c455 -349.40386289422855%2c449 C -157.4%2c443 -61.4%2c220.2 130.59613710577145%2c214 C 322.6%2c207.8 418.6%2c440.2 610.5961371057715%2c418 C 802.6%2c395.8 924.72%2c108.8 1090.5961371057715%2c103 C 1256.48%2c97.2 1370.12%2c331.8 1440%2c389' stroke='rgba(51%2c 121%2c 194%2c 0.58)' stroke-width='2'%3e%3c/path%3e%3cpath d='M -480.74724642895796%2c498 C -384.75%2c436.8 -192.75%2c233.6 -0.7472464289579506%2c192 C 191.25%2c150.4 287.25%2c280.6 479.25275357104204%2c290 C 671.25%2c299.4 767.25%2c215.8 959.252753571042%2c239 C 1151.25%2c262.2 1343.1%2c430.4 1439.2527535710421%2c406 C 1535.4%2c381.6 1439.85%2c174.8 1440%2c117' stroke='rgba(51%2c 121%2c 194%2c 0.58)' stroke-width='2'%3e%3c/path%3e%3cpath d='M -821.7112015341377%2c481 C -725.71%2c417.4 -533.71%2c170.4 -341.7112015341377%2c163 C -149.71%2c155.6 -53.71%2c439.8 138.28879846586233%2c444 C 330.29%2c448.2 426.29%2c190.2 618.2887984658623%2c184 C 810.29%2c177.8 933.95%2c438.6 1098.2887984658623%2c413 C 1262.63%2c387.4 1371.66%2c127.4 1440%2c56' stroke='rgba(51%2c 121%2c 194%2c 0.58)' stroke-width='2'%3e%3c/path%3e%3cpath d='M -202.53221542140983%2c223 C -106.53%2c267.8 85.47%2c452.6 277.46778457859017%2c447 C 469.47%2c441.4 565.47%2c193 757.4677845785902%2c195 C 949.47%2c197 1045.47%2c459 1237.4677845785902%2c457 C 1429.47%2c455 1676.96%2c206.6 1717.4677845785902%2c185 C 1757.97%2c163.4 1495.49%2c316.2 1440%2c349' stroke='rgba(51%2c 121%2c 194%2c 0.58)' stroke-width='2'%3e%3c/path%3e%3c/g%3e%3cdefs%3e%3cmask id='SvgjsMask1000'%3e%3crect width='1440' height='560' fill='white'%3e%3c/rect%3e%3c/mask%3e%3c/defs%3e%3c/svg%3e");
}

textarea{
    width: 500px;
    height: 200px;
    margin-bottom: 25px;
    border-radius: 7px;
    padding: 7px;
    box-shadow: 7px 7px 7px 7px rgba(37, 37, 37, 0.811);
}

img{
    border-radius: 50%;
    transition: 0.15s;
    margin-top: 15px;
    box-shadow: 7px 7px 7px 7px rgba(37, 37, 37, 0.811);
}

img:hover{
    cursor: pointer;
    transform: scale(1.2);
}

img:active{
    opacity: 0.7;
}