@import url('https://fonts.googleapis.com/css2?family=Lobster&display=swap');

* {
    padding: 0;
    margin: 0;
}
html {
    scroll-behavior: smooth;
    height: 62.5%;
}
body {
    background-color: #f4f4f4 !important;
    color: #1a1a1a !important;
    font-family: 'Big Shoulders Stencil Display', cursive, 'Courier New', Courier, monospace !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    flex: auto !important;
    width: 100% !important;
    height: auto !important;
}
h2 {
    font-size: 2rem;
    margin: 1rem 0;
    color: #333;
}
p {
    font-size: 1.6rem;
    margin: 1rem 0;
    line-height: 1.5;
    color: #0000009a;
}

.header {
    padding: 1rem 0;
    border-bottom: 0.1rem solid #0000001d;
    width: 100%;
    height: 4rem;
    text-align: center;
}
.header h1 {
    font-size: 3rem;
    color: #fff;
    animation: header-animation linear infinite 20s;
}
@keyframes header-animation {
    0% { 
        color: #1e1e1e;
    }
    10% { 
        color: #ff4a4a;
    }
    20% { 
        color: #ffb10a;
    }
    30% { 
        color: #1aafff;
    }
    40% { 
        color: #34ff52;
    }
    50% { 
        color: #ce00c1;
    }
    60% { 
        color: #ff89ed;
    }
    70% { 
        color: #a4a4a4;
    }
    80% { 
        color: #28f1ff;
    }
    90% { 
        color: #3513cb;
    }
    100% { 
        color: #1e1e1e;
    }
}
.main-container {
    margin: 2rem 0;
    width: 75%;
    display: flex;
    flex-direction: column;
    position: relative;
}
.list-of-days {
    list-style-type: none;
    display: flex;
    flex-wrap: wrap;
}
.list-of-days .day {
    margin: 1rem 2rem 1rem 0;
}
.list-of-days .day a {
    padding: 1rem;
}
a {
    color: #00bcf0d0;
    font-size: 1.2rem;
}
.list-of-days .day:hover {
    animation: jump linear 0.5s;
}
a:hover {
    color: #00c8ff;
}

@keyframes jump {
    0% { transform: translateY(0);}
    50% { transform: translateY(-0.5rem)}
    100% { transform: translateY(0)}
}

.challenge-title {
    text-decoration: underline;
    font-size: 2rem;
    margin: 2.5rem 0 1.6rem 0;
}
.challenge-container {
    display: flex;
    position: relative;
    border: 0.1rem solid rgba(255, 255, 255, 0.215);
    border-radius: 1rem;
    justify-content: center;
    align-items: center;
    padding: 3.5rem 2rem;
}

#challenge6 {
    flex-direction: column;
}

#challenge14 h1 {
    background-image: url('Desafios/dia 14/image5.jpg');
}
#challenge30 {
    display: block;
}