h1 {
    color: red;
    font-size: 50px;
}

h2 {
    color: white;
}

p {
    color: white;
}

img {
    width: 250px;
    height: 250px;
    mix-blend-mode: screen;
    filter: drop-shadow(0 0 10px white);
    border-radius: 15px;
}

.OrangeTextHTML {
    color: rgb(227, 76, 38);
    filter: drop-shadow(0 0 10px rgb(227, 76, 38));
}

.BlueTextCSS {
    color: rgb(38, 77, 228);
    filter: drop-shadow(0 0 10px rgb(38, 77, 228));
}

body {
    background-color: rgb(1, 2, 3);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: auto;
    cursor: pointer;
}


.squarebox1 {
    background-color: rgb(137, 207, 240);
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 15px;
    animation: MyAnimation 5s infinite linear;
    backdrop-filter: blur(15px);
    color: white;
    cursor: pointer;
    transition: transform 0.5s ease;
}

.squarebox2 {
    background-color: rgb(137, 207, 240);
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 15px;
    animation: MyAnimation 5s infinite linear;
    backdrop-filter: blur(15px);
    color: white;
    transition: transform 0.5s ease;

}


.squarebox3 {
    background-color: rgb(137, 207, 240);
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 15px;
    animation: MyAnimation 5s infinite linear;
    backdrop-filter: blur(15px);
    color: white;
    cursor: pointer;
    transition: transform 0.5s ease;
}

@keyframes MyAnimation {
    0% {
        background-color: rgb(70, 130, 180);
    }

    15% {
        background-color: rgb(0, 13, 193);
    }

    30% {
        background-color: rgb(65, 28, 175);
    }

    45% {
        background-color: rgb(156, 7, 236);
    }

    45% {
        background-color: rgb(70, 130, 180);
    }

    60% {
        background-color: rgb(0, 13, 193);
    }

    75% {
        background-color: rgb(65, 28, 175);
    }

    90% {
        background-color: rgb(156, 7, 236);
    }

    100% {
        background-color: rgb(70, 130, 180);
    }
}

.squarebox1:hover {
    transform: scale(1.1);
}

.squarebox2:hover {
    transform: scale(1.1);
}

.squarebox3:hover {
    transform: scale(1.1);
}