*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
    background-color: #e9262b;
}


@font-face {
    font-family: 'GT America';
    src: url('fonts/GT-America-Regular.woff');
    font-weight: normal;
}

@font-face {
    font-family: 'GT America';
    src: url('fonts/GT-America-Bold.woff');
    font-weight: bold;
}

html{
    overflow-x: hidden;
}

body{

    font-family: 'GT America';
    
}

b{
    font-weight: bold;
}
header{
    position: fixed;
    top:0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 1rem;
    z-index: 100;
  
}



header nav ul{
    display: flex;
    background-color: #ffffff;
    margin-bottom: 1rem;
  }

header nav ul li{
    margin-right: 3rem;
    background-color: #ffffff;
}

header .about{
    flex: 0 0 20%;
    background-color: #ffffff;
}


section.logo{
    height: 100vh;
    top: 10rem;
    width: 100%;
    background-image: url(../img/logo.jpeg);
    background-position: center;
    background-size: 4000px;
    position: fixed;
    background-repeat: repeat;
    z-index: 0;
    animation: pulse 15s infinite
}

@keyframes pulse {
    0% {
        background-size: 100px;
    }
    100% {
        background-size: 5000px;
    }
  }

section.images{
    position: relative;
    margin-top: 100vh;
    z-index: 50;

}

.video-full {
    text-align: center;
}

.video-full iframe {
    height: calc(var(--vh, 1vh) * 90);
    width: -webkit-fill-available;
}

.image-full{
    border-bottom: 3px solid white;
    background-color: white;
}

.image-full img{
    width: 100%;
    height: auto;
}

.image-half{
    display: flex;
}

.image-half img{
    width: 50%;
    height: auto;
}

@media screen and (max-width: 769px) {
    header{
        display: block;
    }

    header nav ul{
        display: block;
        width: 50%;
    }

    header {
        position: inherit;
    }

    section.logo {
        position: inherit;
    }

    section.images {
        margin-top: 0;
    }
}