*{
    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;
}
.info{
    display: flex;
    align-items: center;
    flex-direction: column;
    font-size: 30px;
}
p{
    margin-top: 30px;
}
span{
    color: var(--main-color);
}
.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;
}


