@font-face {
    font-family: "Playch";
    src: url("../fonts/PLAYCH.ttf") format("truetype");
}

body {
    display: flex;
    flex-direction: column;
    font-family: 'Playch',sans-serif;
    font-size: 1rem;
    line-height: 1.4;
    color: #fff;
}

main {
    min-height: 100vh;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    background-image: url("../images/bg.jpg");
    background-size: cover;
}

.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    min-height: 100%;
    padding: 10px 15px 15px;
}

.logo {
    height: auto;
}

h1 {
    position: relative;
    display: inline-block;
    margin-top: 40px;
    font-size: 50px; 
    font-family: 'Playch',sans-serif;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin-left: 0.3em;
}

h1:before {
    content: '';
    position: absolute;
    bottom: 10px;
    left: 0;
    right: 0.3em;
    height: 4px;
    background: #FF9600;
}

.lead {
    margin-top: 10px;
    font-size: 20px;
    letter-spacing: 0.08em;
}

.social-list {
    position: relative;
    margin-top: 30px;
    margin-bottom: 60px;
    display: flex;
    align-items: center;
}

.social-list-item {
    width: 30px;
    height: 30px;
    margin: 0 15px;
    transition: all 0.3s ease-out;
}

.social-list-item:hover {
    transform: scale(1.08);
}

.social-list-item img {
    width: 100%;
}

.footer {
    width: 100%;
    height: 2.5rem;
    position: absolute;
    bottom: 0;
    text-align: center;
}

.term {
    font-weight: 400;
    font-size: 12px;
    line-height: 22px;
    letter-spacing: 0.2px;
    color: rgb(204, 204, 204);
    font-family: Brutal_Regular, "Open Sans", arial;
}

::-webkit-scrollbar {
    width: 0px;  /* Remove scrollbar space */
    background: transparent;  /* Optional: just make scrollbar invisible */
}

@media (min-width: 768px) {
    h1 {
        margin-top: 75px;
        font-size: 80px;
    }
    h1:before {
        height: 8px;
    }
    .logo {
        width: auto;
    }

    .lead {
        font-size: 30px;
    }

    .social-list {
        margin-top: 60px;
    }
}

@media (min-width: 768px) and (max-width: 1024px) {
    .footer {
        height: 3.5rem;        
    }
}

@media (min-width: 420px) and (max-width: 768px) {
    .footer {
        height: 3.5rem;        
    }
}

@media (max-width: 420px) {
    .footer {
        margin-top: 20px;
        height: 5.5rem;        
    }

    .social-list {
        margin-bottom: 160px;
    }
}