* {
    padding: 0;
    margin: 0;
    font-family: 'Roboto', sans-serif;
}

body {
    background-color: rgba(40, 40, 40, 1);
}

.notice {
    background-color: yellow;
    color: grey;
}

.flex-center {
    margin-top: 30vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container {
    padding: 30px;
    transform: rotate(-12deg);
    width: 300px;
    height: 250px;
    background-color: rgb(14, 14, 14);
    box-shadow:  0px 20px 20px black;
    transition: 0.1s;
    animation-name: fade-in;
    animation-duration: 1s;
}

.container:hover {
    transform: rotate(0deg);

}

.text h1{
    color : rgb(193, 177, 137);
    font-family: 'Press Start 2P', cursive;
}

.text p {
    color: whitesmoke;
}

.text a {
    color: whitesmoke;
}

@keyframes fade-in {
    0%   {
        opacity: 0;
        transform: translateY(-100px) rotate(0);
    }
    100% {
        opacity: 1;
    }
  }