@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    background: #242424;
background: radial-gradient(circle, rgba(36, 36, 36, 1) 0%, rgba(0, 0, 0, 1) 100%);
    font-family: "Poppins", sans-serif;
    color: #fff;
}
a{
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}
.container{
    margin: 0 auto;
    max-width: 1252px;
    width: 100%;
}
.wrapper{
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    height: 100dvh;
    padding: 50px 0;
}
.wrapper ul{
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    color: #fff;
    gap: 20px;
}
.wrapper ul li:hover i{
    transform: scale(1.06) translateY(-2px);
}
.wrapper ul li a{
    display: flex;
    align-items: center;
    gap: 5px;
}
.wrapper ul li i{
    font-size: 22px;
    transition: all 0.3s ease;
}
.body{
    pointer-events: none;
    user-select: none;
    text-align: center;
    display: flex;
    flex-direction: column;
    font-size: 18px;
}
.body h1{
    position: relative;
    text-transform: uppercase;
    font-size: 30px;
    font-weight: 800;
    width: fit-content;
    margin: 0 auto;
    margin-bottom: 10px;
    background: red;
    padding: 0 10px;
    border-radius: 7px;
}
.body p{
    margin-bottom: 15px;
}
.body i{
    font-size: 24px;
    animation: spin 1s linear infinite;
}
@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}
.logo{
    user-select: none;
    pointer-events: none;
    max-width: 250px;
    width: 100%;
}
.logo img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
@media (max-width: 768px) {
    .container {
        padding: 0 10px;
    }
}