body{
    background-color: rgb(189, 185, 135);
    overflow: hidden;
}

#title{
    position: absolute;
    top: 10%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 10%;
    text-align: center;
    font-size: 50px;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}

#container{
    max-width: 1000px;
    background-color: rgb(185, 184, 184);
    position: absolute;
    width: 90%;
    height: 80%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 60px;
}

@media screen and (min-width: 800px) {
    #container{
        min-height: 1000px;
        scale: .5;
        position: absolute;
        width: 90%;
        height: 80%;
        top: 50%;
        left: 50%;
        transform: translate(-100%, -100%);
    }
}

#picture{
    position: absolute;
    background-color: transparent;
    width: 90%;
    height: 70%;
    border-radius: 60px;
    top: 20%;
    left: 50%;
    transform: translate(-50%, -20%);
    z-index: 2;
    background-image: url("https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQ9ZHvCKqwv8NVNrAmC9b0HP6Chzi6PpzjtXw&s");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

#backPicture{
    position: absolute;
    width: 70%;
    height: 70%;
    border-radius: 60px;
    top: 20%;
    left: 50%;
    transform: translate(-50%, -20%);
    text-align: center;
    font-size: 30px;
}


#name{
    position: absolute;
    font-size: 60px;
    width: 100%;
    height: 30%;
    top: 110%;
    left: 100%;
    transform: translate(-100%, -110%);
    text-align: center;
}



@keyframes swipeL{
    0%{
        left: 0%;
        top: 0%;
        transform: rotate(0);
        opacity: 100%;
    }

    100%{
        left: -10%;
        top: -10%;
        transform: rotate(-30deg);
        background-color: transparent;
        opacity: 0%;
    }
}

@keyframes swipeR{
    0%{
        left: 0%;
        top: 0%;
        transform: rotate(0);
        opacity: 100%;
    }

    100%{
        left: 20%;
        top: -10%;
        transform: rotate(30deg);
        opacity: 0%;
        
    }
}