*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
    font-family: "Jost" ,sans-serif;
}
:root{
    --bg-color: #1d1c1d;
    --text-color: #fff;
    --main-color: #ea5445;
    --other-color: #858585;
    --h1-font: 5rem;
    --p-font: 1.1rem;
}
body{
    background: var(--bg-color);
    color: var(--text-color);
}
h1{
    color: var(--main-color);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
    font-weight: bold;
    font-size: 50px;
    text-decoration: underline;
}
img{
    width: 350px;
    height:350px;
    object-fit: contain;
    cursor: pointer;
}
.img:hover{
    box-shadow: 2px 2px 2px var(--other-color);
    transform: translateY(-6px);
}
.skills{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    margin-top: 30px;
    column-gap: 5px;


}
.page{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
    flex-direction: column;
    color: var(--text-color);
    font-size: 25px;
    margin-top: 120px;
}
.homepage{
    color: var(--main-color);
}
.home{
    color: var(--main-color);
}
.home:hover{
    opacity: 0.7;
}
.home:active{
    opacity: 0.5;
}