body{
    margin: 0;
    padding: 0;
    font-family: monospace;
    color: white;
    background: black url("bg.jpg") 100% no-repeat fixed;
    background-position-x: center;
}

div{
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    animation: 3s appearFloat forwards;
}

a{
    color: white;
    text-decoration: none;
}

#main{
    margin: auto;
    text-align: center;
    width: 75%;
    border: 2px solid white;
    border-radius: 10px;
    margin-top: 50px;
    padding: 20px 0 20px 0;
    font-weight: bold;
}

img{
    width: 30%;
}

#name{
    font-size: 6vh;
}

#opis{
    font-size: 3vh;
    padding: 0 10vw 0 10vw;
}

#placeholder{
    height: 50px;
}

footer{
    position: fixed;
    padding-top: 10px;
    bottom: 0;
    font-size: 30px;
    width: 100%;
    height: 40px;
    text-align: center;
    background-color: #8A9BA5;
}

#footerp{
    box-shadow: inset 0 0 0 0 white;
    margin: 0 -.25rem;
    padding: 0 .25rem;
    color: white;
    transition: color .3s ease-in-out, box-shadow .3s ease-in-out;
}

#footerp:hover{
    box-shadow: inset 160px 0 0 0 white;
    color: #8A9BA5;
}

@keyframes appearFloat {
    100% {
        opacity: 1;
        margin-top: 20px;
    }
}