*{
    font-family: 'Montserrat';
    box-sizing: border-box;
}

:root{
    --main_color: rgba(0, 0, 255, 0.514);
    --hover_color:rgb(65, 0, 180);
    --footer_color: rgb(255, 0, 0);
}

.Ehyo_Footer{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    flex-direction: row;
    padding: 20px;
}

.Address, .Navigation, .Credit{
    display: flex;
    align-items: start;
    justify-content: center;
    flex-direction: column;
    gap: 30px;
}

.Navigation div{
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.Address h1{
    font-weight: 800;
    color: var(--main_color);
}

.Address div{
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.Address div p{
    color: var(--main_color);
    font-size: 16px;
    font-weight: 600;
}

.Address div p:hover{
    color: var(--hover_color);
}

.Address div div p{
    color: black;
    font-weight: 400;
}

.Address div p span{
    color: black;
    font-size: 14px;
    font-weight: 400;
}

.Address div p a{
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    color: var(--main_color);
}

.Address div p a:hover{
    color: var(--hover_color);
}

.Navigation h1{
    font-weight: 800;
    color: var(--main_color);
}

.Navigation div a{
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    color: var(--main_color);
}

.Navigation div a:hover{
    color: var(--hover_color);
}

.Credit{
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.MadeBy{
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: start;
    flex-direction: column;
    gap: 20px;
}

.MadeBy h3{
    color: var(--main_color);
}

.MadeBy a{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    gap: 10px;
    text-decoration: none;
}

.MadeBy a h1{
    cursor: pointer;
    font-weight: 800;
    color: var(--main_color);
}

.MadeBy a img{
    width: 40px;
    height: 40px;
    cursor: pointer;
}


.Url_Icons{
    display: flex;
    flex-direction: row;
    align-items: start;
    justify-content: start;
    gap: 20px;
}

.Url_Icons div{
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    border-radius: 50%;
    border: 1px solid var(--main_color);
    cursor: pointer;
}

.Url_Icons div:hover{
    border: 1px solid var(--hover_color);
}

.Url_Icons div i{
    cursor: pointer;
    font-size: 20px;
    color: var(--main_color);
}

.Url_Icons div:hover i{
    color: var(--hover_color);
}

@media (max-width: 768px) {
    .Ehyo_Footer {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 30px;
        padding: 30px 15px;
        text-align: center;
    }

    .Address, .Navigation, .Credit {
        align-items: center;
        justify-content: center;
        text-align: center;
        gap: 30px;
    }

    .Address div, .Navigation div{
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .Address div p,
    .Address div div p,
    .Address div p span,
    .Address div p a,
    .Navigation div a {
        font-size: 14px;
    }

    .Navigation h1{
        font-size: 28px;
    }

    .MadeBy {
        align-items: center;
    }

    .MadeBy h3 {
        font-size: 14px;
    }

    .MadeBy a h1 {
        font-size: 18px;
    }

    .MadeBy a img {
        width: 35px;
        height: 35px;
    }

    .Url_Icons {
        justify-content: center;
        gap: 15px;
        flex-wrap: wrap;
    }

    .Url_Icons div {
        padding: 8px;
    }

    .Url_Icons div i {
        font-size: 18px;
    }
}