body{
    margin: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.banner{
    animation: WelcomeSlideIn 1s ease-out;
    background: rgb(255, 75, 75);
}

.banner_content{
    padding: 16px;
    align-items: start;
}

.info{
    animation: InfoSlideIn 1s ease-out;
    background-color: rgb(222, 222, 222);
    box-shadow: 0 0 25px 0px rgb(165, 165, 165);
}

.info_content{
    padding: 10px;
    align-items: center;
}

.products-container{
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding: 20px;
}

.products{
    animation: ProductsSlideIn 1s ease-out;
    position: relative;
    left: 2%;
    bottom: -10px;
    width: 200px;
    box-shadow: 0 0 25px 0px rgb(165, 165, 165);
    border-radius: 25px;
}

.products_content{
    padding: 10px;
    align-items: center;
}

.products-button{
    box-shadow: 0 0 10px 0px rgb(165, 165, 165);
    width: 110px;
    height: 50px;
    border-radius: 15px;
    background-color: black;
    color: white;
    align-items: center;
    font-size: large;
}

.title{
    animation: ProductsSlideIn 1s ease-out;
}

.title-logo{
    float: left;
}

.description{
    animation: ProductsSlideIn 1s ease-out;
    position: relative;
    left: 2%;
    bottom: -10px;
    width: 500px;
    box-shadow: 0 0 25px 0px rgb(165, 165, 165);
    border-radius: 25px;
}
@keyframes WelcomeSlideIn {
    from {
        transform: translateY(-100%);
        opacity: 1;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes InfoSlideIn {
    from {
        transform: translateX(-100%);
        opacity: 1;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes ProductsSlideIn {
    from {
        transform: translateY(10%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}