* {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0px;
    background: #00172E;
    color: #F5F2ED;
    font-family: "Monaco",monospace;
}

h1 {
    font-size: 160px;
    text-transform: uppercase;
    line-height: 1.1;
}

h2 {
    font-size: 80px;
}

a {
    text-decoration: none;
}

p1 {
    line-height: normal;
    font-size: 20px;
    margin: 0px; 
}

p2 {
    font-size: 50px;
    color: #FF1063;
}

section {
    display: flex;
    width: 100%;
    height: 100vh;
}

/* Navigation */

nav {
    position: fixed;
    width: 100%;
    height: 100px;
    top: o;
    left: 0;
    font-size: 20px;
}

nav ul {
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
}

nav ul li {
    list-style: none;
    margin-left: 45px;
}

nav ul li a {
    color: #ffffff;
    font-family: monospace;
}


/* Home Section */

section.home .title {
    flex: 1;
    background:#00172E;
    padding: 5vw;
    
}

section.home .animations {
    flex: 2;
    background: #FF1063;
    padding: 2vw;
}
section.home img {
    width: 500px;
    padding: 10px;
}


/* Reel Section */

section.reel {
    display: flex;
    background: #00172E;
    display: grid;
}

section.reel figure {
   margin-top: 100px;
}

section.reel figure video {
    display: block;
    width: 80vw;
    margin: auto;
    /* padding: 75px; */
}

section.reel .text {
    padding: 125px;
}

/* Developer Section */

section.developer {
    justify-content: center;
}

section.developer .text {
    flex: 2;
    background-color: #FF1063;
    align-items: center;
    padding: 10vw;
}

section.developer .empty {
    flex: 1;
    align-items: center;
    padding: 10vw;
}

section.developer .ig {
    font-size: 30px;
    color: #F5F2ED;
}


/* Contact Section */

section.contact {
    background: #00172E;
    align-items: center;
    justify-content: center;
}

section.contact .link {
    font-size: 60px;
    color: #F5F2ED;
}

/* section.contact img {
    width: 500px;
    padding: 10px;
} */