@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=Playfair+Display:ital,wght@0,400;1,400;1,900&display=swap');

* {
    margin: 0;
    padding: 0;
    text-decoration: none;
    color: black;
    font-family: 'Manrope', sans-serif;
}
a{
    color: black;
}
a:hover{
    color: black;
}
main{
    padding: 40px;
}
header{
    position: absolute;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100px;
    background: linear-gradient(180deg, rgba(201,60,32,1) 0%, rgba(201,60,32,0) 100%);
}
header nav ul{
    list-style: none;
    margin-right: 10px;
}
header nav ul a li{
    margin-right: 30px;
    color: white;
    float: left;
    font-family: 'Manrope', sans-serif;
}

#logo-header{
    padding-left: 20px;
}

.plan-logo-header{
    width: 100px;
    height: auto;
    padding-left: 10px;
    filter: invert(100%);
}
.plan-logo-footer{
    width: 200px;
    height: auto;
    padding: 30px;
}
footer{
    grid-area: footer;
    background-color: brown;
    height: 150px;
    display: flex;
    align-items: center;
}
footer p{
    padding: 30px;  
    color: white;
    font-size: 9pt;
    font-weight: 100;
}

.plan-main{
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
}
.plan-main ul {
    list-style: none;
}
.plan-slider{
    grid-area: slider;
    min-height: 100vh;
    background-image: url(../poster.jpg);
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}