:root{
    --bg-color-main: var(--sneaker-bg-color-main);
    --prim-color: var(--sneaker-prim-color);
    --prim-color-hover: var(--sneaker-prim-color-hover);
    --sec-color: var(--sneaker-sec-color);
    --bg-color-sec: var(--sneaker-bg-color-sec);
    --bg-color-ter: var(--sneaker-bg-color-ter);
    --border-color-prim: var(--sneaker-border-color-prim);
    --link-color: var(--sneaker-link-color);
    --podium-color: var(--sneaker-podium-color);
}

body {
    color: white;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    overflow-x: hidden;
    margin: 0;
    background: var(--bg-color-main);
}


.header{
    position: relative;
    width: 100%;
    height: 180px;
    /* background-color: aqua; */

}

.logo_container{
    position: absolute;
    left: 10px;
    top: 10px;
    width: 80px;
    height: auto;
}

.headline_container {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    text-align: center;
}

.headline {
    position: absolute;
    top: 85px;
    left: 45%;
    transform: translate(-50%, -50%);
    font-size: 60px;
    text-align: right;
}

.headline2{
    color: #FF4D4D;
    position: relative;
    bottom: 10px;
}

.headline_picture{
    position: absolute;
    width: 180px;
    left: calc(45% + 35px);
    top: -55;
    transform: rotate(10deg);
}

.guess_the_wrapper{
    display: flex;
    flex-direction: column;
    padding-left: 30px;
    gap: 20px;
    margin-bottom: 30px;
}

.row_element{
    position: relative;
    height: 200px;
    margin-bottom: 30px;
}

.row_element_headline{
    color: white;
    text-decoration: none;
    margin: 0 0 0 10;
    font-size: 35px;
}

.row_wrapper_childs{
    position: relative;
    height: 90%;
    width: fit-content;
    display: flex;
    gap: 30px;
    transition: all .4s ease-in-out;
    left: 0;
    margin-top: 10px;
}

.category{
    min-width: 300px;
    max-width: 300px;
    height: 180px;
    background: rgba(255,255,255,0.2);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 30px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px); 
    img{
        width: 100%;
        height: 100%;
    }
}

.button_move, .button_moveback{ 
    position: absolute;
    top: calc(50% + 10px);
    /* transform: translate(0, -50%); */
    width: 55px;
    height: 55px;
    font-size: 30px;
    font-weight: 600; 
    color: #fff;
    text-align: center;
    z-index: 4;  
    -o-transition: all .4s ease-in-out;
    -webkit-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
    cursor: pointer;
    display: none; /*default so that it does not flash at the start*/
}

.button_move, .button_moveback {
    border: none;
    border-radius: 50px;
    background-size: 300% 100%;
    background-image: linear-gradient(to right,
            #29323c,
            #485563,
            #2b5876,
            #4e4376);
    box-shadow: 0 4px 15px 0 rgba(45, 54, 65, 0.75);
}

.button_move:hover, .button_moveback:hover {
    background-position: 100% 0;
}

.button_move{
    right: 10px;
}
.button_moveback{
    left: 10px;
    display: none;
}



.footer {
    position: relative;
    height: 150px;
    left: 0;
    width: 100%;
    min-height: 100px;
    background: #1a1a1a;
    color: #ccc;
    font-size: 16px;
    text-align: center;
    padding: 20px 10px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
    z-index: 1000;
    border-top: 0.5px solid white;
    font-family: 'Arial', sans-serif;
}

.footer p {
    margin: 0;
}

.footer a {
    color: white;
    text-decoration: none;
    margin: 0 8px;
    font-weight: 600;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: white;
    text-decoration: underline;
}
