@font-face {
    font-family:"Mont_Bold";
    src: url(/font/Montserrat-Bold.ttf);
}

@font-face {
    font-family:"Mont_Med";
    src: url(/font/Montserrat-Medium.ttf);
}

@font-face {
    font-family:"Mont_SemiBold";
    src: url(/font/Montserrat-SemiBold.ttf);
}


*{
    margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}

html{
    font-family: "Mont_Med";
    font-size: 20px;
}

header{
    display: flex;
    flex-direction: column;
    height: 120px;
}

#prom_top{
    height: 50%;
    background-color: black;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 500;
    font-size: 16px;
}

#jordan_top{
    height: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    font-weight: 600;
}

#wallpaper_shoes{
    width: 100%;
    height: 377px;
    background-image: url(/image/wallpaper.jpeg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 0px;
    position: relative;
}

#filter{
    background-color: rgba(0, 0, 0, 0.5);
    width: 100%;
    height: 377px;
}

#wallpaper_text {
    color: white;
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 60%;
    justify-content: center;
    padding-inline: 40px;
}

#wallpaper_text h1{
    font-size: 48px;
    font-weight: 600;
    line-height: 80px;
}

#wallpaper_text p{
    font-size: 24px;
    width: 80%;
    line-height: 35px;
}

#destaques{
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-block: 15px;
}

#destaques h1{
    font-weight: 600;
    font-size: 32px;
    line-height: 60px;
}

#destaques p{
    font-weight: 500;
    font-size: 20px;
    line-height: 24px;
    color: #474747;
}

#container_shoes{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.card{
    display: flex;
    background-color: #EBE9EA;
    margin-block: 20px;
    margin-inline: 10px;
}

.card img{
    width: 60%;
    height: 50%;
}

/* ***** Copyright *****  */

#copy_section{
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-top: 1rem;
    font-size: 90%;
}

#copy_button{
    background-color: #EBE9EA;
    color: #000000;
    border: 1px solid black;
    border-bottom: 0px solid;
    cursor: pointer;
    align-self: flex-end;
    width: 1rem;
    height: 1rem;
    font-size: 0.8rem;
}

#copy_hidden{
    display: none;
}

#copy_hidden a{
    text-decoration: none;
    color:#569ff5;
    margin-inline: 0rem;
}

#copy_section.show #copy_hidden{
    font-size: 80%;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 4rem;
    color: #000000;
    background-color: #EBE9EA;
    border-top: 1px solid black;
}

@media (max-width: 768px) {

    #wallpaper_text {
        height: 100%;
        width: 100%;
        align-items: center;
        padding-inline: 0px;
    }

    #wallpaper_text h1{
        font-size: 28px;
        line-height: 45px;
        width: 80%;
        text-align: center;
    }
    
    #wallpaper_text p{
        font-size: 16px;
        width: 75%;
        line-height: 25px;
    }

    #destaques{
        text-align: center;
    }

    #destaques h1{
        font-size: 25px;
        line-height: 40px;
    }
    
    #destaques p{
        font-size: 15px;
    }

    .card{
        margin-block: 10px;
        margin-inline: 13px;
    }
    
    .card img{
        height: 48%;
    }
}