body{
    background-color: #21252b;
    font-family: Arial;
    text-align: center;
}

#header img{
    width: 50px;
    border-radius: 10px;
    margin-right: 10px;
    
}

#header{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    animation: slideDown 1s forwards;
}

#header p{
    font-size: x-large;
    color: white;
    font-weight: bold;
}

#hr{
    border: 1px solid white;
    margin-bottom: 10px;
    animation: slideDown 1s forwards;
}

#apps div{
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 10px;
    margin: 10px;
    padding-top: 10px;
    padding-left: 15px;
    padding-right: 15px;
    transition: 0.1s;
}

#apps a{
    text-decoration: none;
}

#apps div:hover{
    background-color: rgba(128, 128, 128, 0.349);
    cursor: pointer;
    transform: scale(1.1);
}

#apps{
    opacity: 0;
    display: flex;
    flex-direction: row;
    justify-content: center;
    animation: fadeIn 1s forwards;
    animation-delay: 1s;
    flex-wrap: wrap;
}

#apps div p{
    margin-bottom: 5px;
    color: white;
}

#apps div img{
    width: 75px;
    margin: 0px;
    margin-bottom: -10px;
}

#footer{
    opacity: 0;
    position: absolute;
    bottom: 10px;
    padding: 0px;
    animation: fadeIn 1s forwards;
    animation-delay: 2s;
}

#footer p{
    margin: 0px;
    color: white;
    opacity: 0.1;
    font-size: 14px;
}


@keyframes slideDown {
    from{
        transform: translateY(-100vh);
    }
    to{
        transform: translateY(0%);
    }
}

@keyframes fadeIn{
    from{
        opacity: 0;
    }
    to{
        opacity: 1;
    }
}