* {

    margin: 0;

    padding: 0;

    box-sizing: border-box;

}

body {

    background-image: url(/images/dogge.png);

    background-repeat: no-repeat;

    background-position: center;

    background-size: cover;

    color: #2D2F33;
    
    min-height: 900px;
}

.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.active {

    color: #5865F2;

}

header li a:hover {

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

}

main {

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

}

.hero {

    text-align: center;

    padding: 4rem 1rem 2rem;

}

.hero h1 {

    font-size: 2.8rem;

    font-weight: 700;

    margin-bottom: 1rem;

    color: #ffffff;

}

.hero p {

    font-size: 1.1rem;

    color: #ffffff;

    max-width: 640px;

    margin: 0 auto 2rem;

}

.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;

}

.cta2 {

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

    color: #2D2F33;

    border-radius: 10px;

    padding: 15px 35px;

    border: none;

    font-size: 16px;

    cursor: pointer;

    transition: background-color 0.3s;

}

.cta2:hover {

    background-color: #5865F2;

    color: #FFFFFF;

}

.rules {

    display: flex;

    justify-content: center;

    padding: 3rem 1rem 6rem;

}

.rules-box {

    background-color: #FFFFFF;

    padding: 2rem;

    border-radius: 16px;

    max-width: 680px;

    width: 100%;

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

}

.rules-box h2 {

    font-size: 1.8rem;

    margin-bottom: 1.5rem;

    text-align: center;

    color: #1E1E1E;

}

.rules-box ol {

    list-style-position: inside;

}

.rules-box li {

    margin-bottom: 1.5rem;

    font-size: 1rem;

    color: #333;

}

.rules-box strong {

    display: inline-block;

    margin-bottom: 0.3rem;

    font-weight: 600;

    color: #111;

}

@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;

}