.home{
    text-align: right;
    font-size: 30px;
    font-family:Arial, Helvetica, sans-serif;
    text-shadow: 0px 5px 6px rgba(0, 0, 0, 0.276);
    background-repeat: no-repeat
}
.logo{
    font-size: 50px;
    font-family:'Gill Sans', 'Gill Sans MT', 'Calibri', 'Trebuchet MS', sans-serif;
    text-align: center;
    -webkit-text-fill-color: rgb(0, 0, 0); 
    -webkit-text-stroke: 5px rgb(255, 255, 255);
    text-shadow: 0px 5px 6px rgba(0, 0, 0, 0.276);
    font-weight: bold;
    animation-duration: 3s;
    animation-name: test;
    animation-timing-function: cubic-bezier(0.87,-0.76, 0.84, 0.6);
}
.all-the-stuff{
    width: 50%;
    margin: 0 auto;
    text-align: left;
    background-color: white;
    padding: 10px;
    justify-content: center;
    width: 700px;
    border-radius: 30px;
    text-shadow: 0px 5px 6px rgba(0, 0, 0, 0.276);
    box-shadow: 0px 5px 6px rgba(0, 0, 0, 0.276);
}
h1{
    font-family:Arial, Helvetica, sans-serif;
    text-shadow: 0px 5px 6px rgba(0, 0, 0, 0.276);
}

textarea{
    font-family:Arial, Helvetica, sans-serif;
    border-radius: 20px;
    padding: 10px;
    background-color: rgb(245, 245, 245);
    resize: none;
    border-width: 0px;
    font-size: 20px;
    text-shadow: 0px 5px 6px rgba(0, 0, 0, 0.276);
    box-shadow: 0px 5px 6px rgba(0, 0, 0, 0.276);
    outline: none;
    transition: 150ms ease;
}
button{
    box-shadow: 0px 5px 6px rgba(0, 0, 0, 0.276);
    text-shadow: 0px 5px 6px rgba(0, 0, 0, 0.276);
    font-size: 30px;
    background-color: rgb(245, 245, 245);
    border-radius: 20px;
    padding: 10px;
    border: none;
    transition: 150ms ease;
}
button:hover{
    background-color: rgb(233, 233, 233);
    scale: 105%;
}
button:active{
    background-color: rgb(202, 202, 202);
    scale: 95%;
}
textarea:hover{
    background-color: rgb(233, 233, 233);
    scale: 101%;
}
a{
    font-family:Arial, Helvetica, sans-serif;
    color: rgb(0, 30, 255);
    transition: 150ms ease;
}
a:hover{
    color: rgb(0, 22, 187);
    font-weight: bold;
}
a:active{
    color: rgb(116, 132, 255);
    font-weight: bold;
}
p{
    font-family:Arial, Helvetica, sans-serif;
    text-shadow: 0px 5px 6px rgba(0, 0, 0, 0.276);
    font-size: 20px;
}
.mypfp{
    box-shadow: 0px 5px 6px rgba(0, 0, 0, 0.276);
    width:100px;
    animation-duration: 2s;
    animation-name: mypfpa;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}
input[type="checkbox"]{
    appearance: none;
    display: flex;
    height: 30px;
    width: 30px;
    box-shadow: 0px 5px 6px rgba(0, 0, 0, 0.276);
    text-shadow: 0px 5px 6px rgba(0, 0, 0, 0.276);
    background-color: rgb(245, 245, 245);
    border-radius: 10px;
    padding: 0px;
    transition: 150ms ease;
}
input[type="checkbox"]:hover{
    background-color: rgb(233, 233, 233);
    scale: 120%;
}
input[type="checkbox"]:active{
    background-color: rgb(202, 202, 202);
    scale: 95%;
}
input[type="checkbox"]:checked{
  background-image: url("svgs/mark.svg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center
}
input[type="text"]{
    font-family:Arial, Helvetica, sans-serif;
    border-radius: 20px;
    padding: 10px;
    background-color: rgb(245, 245, 245);
    resize: none;
    border-width: 0px;
    font-size: 20px;
    text-shadow: 0px 5px 6px rgba(0, 0, 0, 0.276);
    box-shadow: 0px 5px 6px rgba(0, 0, 0, 0.276);
    outline: none;
    transition: 150ms ease;
}
input[type="text"]:hover{
    background-color: rgb(233, 233, 233);
    scale: 103%;
}
input[type="password"]{
    font-family:Arial, Helvetica, sans-serif;
    border-radius: 20px;
    padding: 10px;
    background-color: rgb(245, 245, 245);
    resize: none;
    border-width: 0px;
    font-size: 20px;
    text-shadow: 0px 5px 6px rgba(0, 0, 0, 0.276);
    box-shadow: 0px 5px 6px rgba(0, 0, 0, 0.276);
    outline: none;
    transition: 150ms ease;
}
input[type="password"]:hover{
    background-color: rgb(233, 233, 233);
    scale: 103%;
}
input[type="number"]{
    font-family:Arial, Helvetica, sans-serif;
    border-radius: 20px;
    padding: 10px;
    background-color: rgb(245, 245, 245);
    resize: none;
    border-width: 0px;
    font-size: 20px;
    text-shadow: 0px 5px 6px rgba(0, 0, 0, 0.276);
    box-shadow: 0px 5px 6px rgba(0, 0, 0, 0.276);
    outline: none;
    transition: 150ms ease;
}
input[type="number"]:hover{
    background-color: rgb(233, 233, 233);
    scale: 103%;
}
@keyframes mypfpa {
    0%{

    }
    100%{
        transform: rotate3d(1,2,1,720deg);
    }
}
.background{
    background: #00c8ff;
    background-image: linear-gradient(0deg, #ff000000, #ffffffa0);
    background-repeat: no-repeat
}