*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Raleway", sans-serif;
}

body{
    background-color: rgb(20, 19, 19);
}






.nav{
    display: flex;
    gap: 30px;
}

.nav > a{
    color: aliceblue;
    text-decoration: none;
    font-size: 24px;
    transition: 0.5s;
}

.nav > a:hover{
    text-decoration: underline;
    color: rgb(246, 210, 142);
}

/* --- Main --- */
.main{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px 0;
}

.main_title{
    width: 70%;
    min-height: 600px;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 25px;

    border-radius: 10px;
    background-color: rgb(20, 19, 19);

    box-shadow:
        0 0 15px rgba(0, 183, 255, 0.4),
        inset 0 0 20px rgba(0, 183, 255, 0.35);
    padding: 30px;
}

.title{
    font-size: 68px;
    color: #e6f7ff;
    letter-spacing: 4px;
    text-align: center;
}

.main_title > p{
    color: #dff6ff;
    font-size: 20px;
    text-align: center;
    font-style: oblique;
}

/* --- Кнопки --- */
.link_admin{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 25px;
}

.link_admin a{
    min-width: 200px;
    height: 60px;

    display: flex;
    align-items: center;
    justify-content: center;

    background-color: rgb(20, 19, 19);
    color: #eaffff;

    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 1.3px;

    border-radius: 14px;
    border: 1px solid rgba(0, 200, 255, 0.35);

    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.link_admin a:hover{
    transform: translateY(-3px);
    box-shadow: 0 0 15px rgba(0, 200, 255, 0.4);
}


.footer{
    width: 100%;
    margin-top: 120px;
    background-color: rgb(16, 15, 15);
    box-shadow: 0 -5px 20px rgba(0, 183, 255, 0.25);
}

.footer_container{
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;

    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.footer_block{
    display: flex;
    flex-direction: column;
    gap: 14px;
    min-width: 220px;
}

.footer_block h3{
    color: #e6f7ff;
    font-size: 22px;
    letter-spacing: 1.5px;
}

.footer_block p{
    color: #b8dce8;
    font-size: 15px;
    line-height: 1.6;
}

.footer_block a{
    color: #dff6ff;
    text-decoration: none;
    font-size: 15px;
    transition: 0.3s;
}

.footer_block a:hover{
    color: rgb(246, 210, 142);
    transform: translateX(4px);
}

.footer_bottom{
    text-align: center;
    padding: 20px 10px;
    font-size: 14px;
    color: #9fbfcc;
    border-top: 1px solid rgba(0, 200, 255, 0.2);
}


@media (max-width: 1024px){
    .main_title{
        width: 90%;
        min-height: auto;
        padding: 20px;
    }
    .title{
        font-size: 50px;
    }
    .main_title > p{
        font-size: 18px;
    }
    .link_admin a{
        min-width: 150px;
        height: 50px;
    }
}

@media (max-width: 768px){
    .nav{
        display: none; 
    }
    
}

@media (max-width: 480px){
    .title{
        font-size: 36px;
    }
    .main_title > p{
        font-size: 16px;
    }
    .link_admin{
        gap: 15px;
    }
    .link_admin a{
        min-width: 120px;
        height: 45px;
        font-size: 14px;
    }
    .footer_container{
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }
}
