:root {
    --blue: #0E3FA9;
    --yellow: #FFA903;
    --navy: #0A1F44;
}

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

body {
    background-color: var(--navy);
    color: var(--yellow);
}

nav {
    height: 108px;
}

.nav {
    font-size: 2.5rem;
}

h1 {
    font-size: 3rem;
    text-align: center;
    padding-top: 30px;
    padding-bottom: 20px;
}

h2 {
    text-align: center;
    font-size: 2rem;
    padding-bottom: 20px;
}

.blurb {
    font-size: 2rem;
    text-align: center;
    max-width: 75%;
    margin: 0 auto;
    padding: 20px;
}

body {
    font-family: Raleway, sans-serif;
    max-width: 1280px;
    margin: 0 auto;
}

header {
    border-bottom: 5px solid var(--yellow);
    border-left: 5px solid var(--yellow);
    border-right: 5px solid var(--yellow);
    height: 108px;
    align-items: center;
    background-color: var(--blue);
}

ul li p {
    display: none;
}

nav a {
    text-decoration: none;
    color: var(--yellow);
}

.hover {
    display: flex;
    align-items: center;
    height: 108px;
}

.hover:hover, .hover:hover a {
    background-color: var(--yellow);
    color: var(--blue);
}

.hover, .hover a {
    transition: background-color 1s;
    transition: color 1s;
    cursor: pointer;
}

nav ul {
    margin: 0;
    padding: 0;
    height: 108px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    list-style-type: none;
}

nav ul li {
    padding: 0px 100px;
}

.big {
    display: block;
    margin: 0 auto;
    width: 80%;
    height: 80%;
}

#slides {
    padding-top: 50px;
    border: 5px solid var(--yellow);
    max-width: 410px;
    margin: 0 auto;
}

#slides h2 {
    padding-bottom: 50px;
    border-bottom: 5px solid var(--yellow);
}

button {
    font-size: 2rem;
    padding: 20px;
    border-radius: 20px;
}

#movies {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1rem;
    margin-right: 25%;
}

.movie {
	display: block;
	max-width: 100px;
	margin: 0 auto;
}

#films {
    padding-top: 50px;
    margin-top: 60px;
    padding-bottom: 20px;
    border: 5px solid var(--yellow);
}

input {
    font-size: 1.5em;
    margin-bottom: 20px;
}

#watchLater {
    padding-top: 50px;
    padding-bottom: 20px;
    margin-top: 60px;
    border: 5px solid var(--yellow);
    display: flex;
    flex-direction: column;
    align-items: center;
}

#watchLater input:not([type="button"]) {
    width: 400px;
}

#watchLater input {
    padding: 10px;
}

footer {
    text-align: center;
    margin-top: 50px;
}