* {
    box-sizing: border-box;
}

p{    
    margin:0;      
}

body{
   
    color: #676767;
    font-family: 'Roboto', sans-serif;        
}

#container{
    width: 100%;
    padding-bottom:1rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

#header{
    width: 100%;
    display: flex;
    flex-direction: column;      
    padding-top: 0.5rem;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

#header img {
    width:120px;
}

#header__text{
    position: relative;
    display: flex;
    flex-direction: column;    
    width: 310px;
    height: 90px;
    font-size: 2rem;   
    font-family: 'Audiowide', cursive;
}

#header__text__ent{
    position: absolute;
    top: 10px;    
    align-self: flex-start;    
    color: #007eacff;
}

#header__text__cen{
    position: absolute;
    bottom: 10px;
    color: #ff8d32ff;        
    align-self: flex-end;
}

#content{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

#content__title {
    font-size: .8rem;
    text-align: center;
    
    
}

#content__shops{
    display: flex;
    gap: 2rem;
    width: 100%;
    align-items: center;
    justify-content: center;
    flex-wrap:wrap;    
}

.content__shops__shop {
    position: relative;
    width: 350px;
    height: 100px;
    display: flex;
    align-items: center;  
    border: solid #E0E0E0 1px;    
    color: #676767;    
    transition: all ease 0.2s;
    cursor: pointer;
}

.content__shops__shop:nth-child(n+4){
    display: none;
}


.content__shops__shop__subtitle{
    position: absolute;
    top: 30px;    
    left: 100px;
    font-size: .7rem;    
    text-transform: uppercase;
    color: #74828F;    
}

.content__shops__shop__text-fogantyu{
    font-family: 'KoHo', sans-serif;
    left: 3rem;
    top: 2.7rem;
    position: absolute;        
    font-size: 1.65rem;    
    color: #74828F;    
}

.fogantyu-span{
    color:#f87d00;
}

.content__shops__shop__text-kulacs{
    font-family: 'Kodchasan', sans-serif;
    left: 3.4rem;
    top: 2.5rem;
    position: absolute;        
    font-size: 1.7rem;   
    font-weight: bold; 
}

.kulacs-span{
    color:#f87d00;  
    position: relative;
    left:-1px;
}

.content__shops__shop__text-mosdo{
    font-family: 'Righteous', cursive;
    left: 4.9rem;
    position: absolute;        
    font-size: 1.7rem;    
}

.mosdo-span{
    color: #3d7bac;
}

.content__shops__shop__logo-mosdo{
    position: absolute;
    top: 23px;
    left: 1.6rem;
    width: 42px;
    height: 42px;
}

.content__shops__shop__logo-fogantyu{
    position: absolute;
    left: 1.2rem;
    width: 55px;
    height: 44px;
}

.content__shops__shop__logo-kulacs{
    position: absolute;
    left: 1.4rem;
    width: 50px;
    height: 60px;
}


.content__shops__shop__logo img{
    width: 100%;
    height: 100%;
}

#footer{    
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
}

#footer__title{
    font-size: .8rem;
    
}

#footer__media{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;        
    width: 100%;
    gap: 2rem 0;
}

.footer__media__medium{
    cursor: pointer;
    width: 30%;  
    justify-content: center;
    display: flex;
    align-items: center;      
}

.footer__media__medium img{
    width: 60px;
    height: 60px;
}

.footer__subtitle {
    font-size:0.75rem;
    padding-bottom: 1rem;
    color: #676767;
}