
.fn-flex, .fn-flex-col, .text-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.fn-flex-col {
    flex-direction: column;
}

.full-width {
    width: 100%;
}

.breath {
    margin: 10%;
}

body {
    font-family: 'Arial', sans-serif;
    background-color:rgb(33, 33, 33);
    color: rgb(242, 242, 242);
    margin: 0;
    padding: 0;
}

.main-container {
    display: flex;
    align-items: center;
    justify-content: start;
    flex-direction: column;
    height: 100vh;
}

.text-container {
    width: 100%;
    justify-content: space-around;
}

/* can you write it without persentages */
/* Animation for changing text color */
/* write animation changing color without frames at percentages */

/* create me a responsive image container */
.image-container {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
}

.image-container img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

@keyframes colorChange {
    0%   { color: red; }
    20%  { color: blue; }
    40%  { color:aquamarine }
    60% { color: yellow; }
    80%  { color: palevioletred; }
    100% { color: red; }
}

.color-change {
    animation: colorChange 5s infinite;
    font-weight: bold;
}
