﻿* {
    padding: 0;
    margin: 0;
    
}
 

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-25px);
    }
}


.container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 90vh;
    overflow: hidden;
    background: linear-gradient(to bottom, #0805059f, transparent);
}

.logodiv {
    width: 100%;
    height: 450px;
    display: grid;
    justify-content: center;
    align-items: center;
}


.logo {
    width: 150px;
    animation: bounce .7s infinite;
}
