* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    overflow-x: hidden;
}

main {
    opacity: 0;
    transform: translateY(150px);
    animation: fadeInUp 0.8s ease-out forwards;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.flexbox {
    display: flex;
    flex-direction: column;
    justify-content: center;
    justify-items: center;
    align-content: center;
    align-items: center;
    text-align: center;
    flex-wrap: wrap;
}

button, .btn {
    transition: transform 0.3s ease-out;
}

button:hover {
    transform: scale(1.05);
}

img {
    height: 100%;
    width: auto;
    border-radius: 15px;
}

@media (max-width: 768px) {
    img {
        width: 100%;
        height: auto;
    }
}

footer {
    background: #212529;
    text-align: center;
    color: white;
    padding: 35px;
    margin-top: 55px;
}

html {
    scrollbar-width: thin;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.year-date {
    font-size: 20px;
    margin-bottom: 25px;
}
