body{
    margin: 0;
    padding: 0;
    /* background-color: #FDF0D5; */
    background-color: #f5ebdc;
    overflow: hidden;
}

p{
    font-family: 'Roboto Condensed';
    font-size: 160%;
    color: #2c2c2c;
}

nav > a{
    text-decoration: none;
}

a:link{
    color: #C51B54
}

a:visited{
    color: #A21645;
}

h1{
    color: rgb(245, 245, 245);
    font-family: 'Staatliches', cursive;
    font-size: 260%;
    letter-spacing: .25rem;
    text-shadow: 3px 3px 5px #000000;
}

h2, h3{
    font-family: 'Commissioner';
    font-size: 225%;
}

h2{
    text-align: center;
}

#self-image{
    height: 300px;
}

#self-image > img{
    height: 100%;
}

#title{
    margin-left: 5%;
    text-align: center;
    align-self: center;
}

header{
    width: 100%;
    min-height: 10%;
    max-height: 20%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    /* background-color: rgb(187, 76, 76); */
    background: linear-gradient(to bottom, #d35454 0%, #a83232 100%);
}

nav{
    /* background-color: rgb(41, 41, 41); */
    background: linear-gradient(to bottom, #2a2a2a 0%, #1a1a1a 100%);
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    height: 4rem;
    max-height: 100%;
    width: 100%;
}

button{
    display: block;
    background-color: #d6d6d6;        /* light neutral gray */
    color: #111111;                   /* dark text for contrast */
    border: 2px solid #555555;        /* slight border definition */
    padding: 10px 16px;
    border-radius: 6px;
    font-weight: bold;
    box-shadow: 2px 2px 6px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    width: 100%;
    text-align: center;
    font-family: 'Commissioner';
}

button:hover{
    background-color: #ffffff;        /* crisp white */
    color: #b22222;                   /* subtle red accent */
    border-color: #b22222;
    transform: translateY(-1px);
    box-shadow: 3px 3px 10px rgba(0,0,0,0.3);
}

.buttonColumn{
    border: solid black 5px;
    position: absolute;
}

.sectionButton{
    position: relative;
}

#wrapper{
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

img{
    max-height: max-content;
    max-width: 50%;
    max-height: 600px;
    margin-right: 5%;
    border: solid black 5px;
    border-radius: 1%;
}

.trailer {
    max-width: 60%;
    margin-right: auto;
    border: solid black 5px;
}

#content{
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    margin: 1% 2%;
    /* align-items: stretch; */
}

#content > p {
    width: 40%;
}