* {

    margin: 0;

    padding: 0;

    box-sizing: border-box;

}

body {

    background-color: #EEF0FF;

    color: #2D2F33;
    
    min-height: 1400px;

}

.home-button a{

    font-family: 'Averia Sans Libre', sans-serif;

    font-weight: 700;

    font-style: normal;

    margin-left: 50px;

    color: #5865F2;

    font-size: 25px;

    text-decoration: none;

}

header {

    background-color: #DCE6FF;
    
    position: fixed;
    
    top: 0;
    
    left: 0;
    
    right: 0;
    
    height: 80px;
    
    display: flex;
    
    align-items: center;
    
    box-shadow: 0 0 25px 0 black;

}

header * {

    display: inline;

}

header li {

    font-family: 'Bree Serif', sans-serif;

    margin-left: 50px;

}

header li a {

    color: #3A3A3C;
    
    text-decoration: none;

    transition: 0.3s;

}

header li a:hover {

    color: #5865F2;
    
    text-decoration: none;

}

header li a.active {

    color: #5865F2;

}

main {

    font-family: 'Balsamiq Sans', sans-serif;

}

.cta {

    background-color: #FACC15;

    color: #2D2F33;

    border-radius: 10px;

    padding: 15px 35px;

    border: none;

    font-size: 16px;

    cursor: pointer;

    transition: background-color 0.3s;

    margin-left: 500px;

}

.cta:hover {

    background-color: #5865F2;

    color: #FFFFFF;

}

.about-hero {

    background-color: #f4f4f4;

    padding: 4rem 2rem;

    display: flex;

    justify-content: center;

    align-items: center;

}

.about-content {

    max-width: 960px;

    width: 100%;

    display: flex;

    flex-wrap: wrap;

    justify-content: space-between;

    align-items: center;

}

.about-content .text {

    flex: 1 1 400px;

}

.about-content .text h1 {

    font-size: 4rem;

    margin-bottom: 1rem;

    color: #2D2F33;
    
}

.about-content .text p {

    font-size: 1.1rem;

    color: #333;

    max-width: 600px;

}

.about-content .logo {

    flex: 1 1 200px;

    text-align: center;

}

.about-content .logo img {

    width: 300px;

    height: auto;

    border-radius: 1000px;

}

.offer-section {

    padding: 3rem 1rem 5rem;

    text-align: center;

    background-color: #F9FAFB;

}

.offer-section h2 {

    font-size: 1.8rem;

    color: #1E1E1E;

    margin-bottom: 2rem;

}

.offers {

    display: flex;

    justify-content: center;

    flex-wrap: wrap;

    gap: 2rem;

    max-width: 960px;

    margin: auto;

}

.offer-box { 

    background-color: #FFFFFF;

    padding: 3rem 3rem;

    border-radius: 12px;

    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);

    flex: 1 1 280px;

    max-width: 300px;

    transition: transform 0.3s;

}

.offer-box:hover {

    transform: translateY(-5px)

}

.offer-box h3 {

    font-size: 1.2rem;

    color: #5865F2;

    margin-bottom: 0.8rem;

}

.offer-box p {

    font-size: 0.95rem;

    color: #333;

}

@keyframes color-changer {
  
    0% {
    
        color: red;
    
    }
    
    20% {
    
        color: orange;
    
    }
    
    40% {
    
        color: yellow;
    
    }
    
    60% {
    
        color: green;
    
    }
        
    80% {
    
        color: blue;
    
    }
    
    100% {
    
        color: purple;
    
    }

}

footer {

    font-family: 'Balsamiq Sans', sans-serif;
    
    background-color: #E0ECFF;

    animation: color-changer 2s infinite;

    text-align: center;

    padding: 10px;

    position: fixed;

    width: 100%;

    bottom: 0;

}