@import url('https://fonts.googleapis.com/css2?family=Instrument+Sans:ital,wght@0,400..700;1,400..700&display=swap');

* {
    font-family: 'Instrument Sans', sans-serif;
    box-sizing: border-box;
    margin: 0 !important;
    padding: 0 !important;
    user-select: none;
    -webkit-user-select: none; /* Para Safari */
    -ms-user-select: none;
}

img {
    pointer-events: none;
    -webkit-user-drag: none; /* Para Safari e Chrome */
    user-drag: none;
}

body {
    background-color: black;
    color: white;
    width: 100%;
    height: auto;
}

.main {
    margin: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-wrap: wrap;
}

.left-side{
    display: flex;
    justify-content: start;
    align-items: end;
    padding: 20px !important;
}

.left-side span{
    opacity: 0.4;
}

.logo img{
    width: 20vh;
    height: auto;
}

.mid-side{
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.text{
    margin-top: 7vh !important;
    font-weight: bold;
    font-size: 40px;
}

.social-icons{
    display: flex;
    flex-direction: row;
    margin-top: 7vh !important;
    gap: 20px;
}

.social-icons a{
    width: 80px;
    height: 80px;
    background-color: transparent;
    border-radius: 10px;
    border: 1px solid #474343;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none !important;
    color: white;
}

.social-icons a i{
    font-size: 30px;
}

.social-icons a img{
    width: 25px;
}

.right-side{
    display: flex;
    justify-content: end;
    align-items: end;
    padding: 50px !important;
    text-align: right;
}

.right-side .info{
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.right-side a{
    text-decoration: none !important;
    color: white;
}

.footer{
    display: none;
}

@media (max-width: 768px) {
    .left-side{
        opacity: 0;
    }

    .footer{
        display: block;
        padding: 20px !important;
        text-align: center;
        margin-bottom: 20px !important;
        opacity: 0.4;
    }
}