*, *::before, *::after{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    background-color: #333333;
    display: grid;
    grid-auto-rows: 1fr;
    height: 100vh;
    row-gap: 4rem;
    font-family: ClashDisplay-Regular, sans-serif;
}
p, a{
    color: white;
}
.head{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}
.title{
    font-size: 4rem;
    text-align: center;
}
.title-p{
    text-align: center;
    font-size: 2rem;
    border: 1px solid white;
}
.ul{
    display: flex;
    flex-direction: column;
    font-size: 2rem;
    align-items: center;
    justify-content: center;
}
.ul div p span{
    display: inline-block;
    border-bottom: 3px solid white;
    font-size: 1.8rem;
}
.ul > div{
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.list{
    display: flex;
    flex-direction: column;
}
.list a{
    text-decoration: none;
}
footer{
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 1.3rem;
    gap: 3rem;
}
footer > p{
    border: 1px solid white;
}
.contact{
    display: flex;
    justify-content: center;
    gap: 3rem;
}
img{
    width: 1rem;
}