/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* FONT FACE */
@font-face {
    font-family: 'Geo';
    src: url('css/fonts/Geomanist-Bold.woff2') format('woff2'),
         url('css/fonts/Geomanist-Bold.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

/* BODY */
body {
    font-family: 'Geo', sans-serif;
    overflow: hidden;
}

/* VIDEO FULLSCREEN */
#bg-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

/* HEADER */
.top-bar {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 10;
    width: calc(100% - 40px);
}

/* LOGO + TEXTO */
.logo-container {
    display: flex;
    /* align-items: center; */
    gap: 15px;
}

.logo {
    height: 50px;
}

.tagline {
    color: white;
    font-size: 18px;
    line-height: 24px;
    margin-left: 5px;
    padding-top: 5px;
}

.tagline a {
    color: white;
    text-decoration: none;
}

.tagline a:hover {
    text-decoration: underline;
}

@media screen and (max-width: 430px) {
    .logo-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .tagline{
        font-size: 16px;
        line-height: 22px;
        margin-left: 0px;
    }
}

.sound-btn {
    position: fixed;
    bottom: 10px;
    right: 10px;
    z-index: 20;

    background: rgba(0,0,0,0.6);
    border: none;
    color: white;
    font-size: 12px;

    padding: 12px;
    border-radius: 50%;
    cursor: pointer;

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

/* esconder um dos ícones por default */
.icon-sound-on {
    display: none;
}