@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    font-family: 'Poppins', Arial, sans-serif;
}

body {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-image: url("../images/landing.webp");
    background-size: cover;
    background-position: center;
}

.content {
    color: white;
    text-align: left;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    z-index: 2;
    margin: 50px;
}

.text-section {
    max-width: 50%;
    text-shadow: 2px 3px 2px rgba(0, 0, 0, 0.3);
}

.text-section h1 {
    font-size: 4em;
    font-weight: bold;
    margin: 0;
}

.text-section h2 {
    font-size: 2rem;
    margin: 0;
}

.text-section .buttons {
    margin-top: 1em;
}

.text-section .buttons button {
    margin-right: 1em;
    width: 160px;
    height: 50px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
}

.text-section .buttons button.signup {
    background-color: #0a81ff;
    color: #ffffff;
    font-weight: BOLD;
}

.text-section .buttons button.trailer {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #0a81ff;
}

.text-section .sign-in a {
    margin-left: 5px;
    color: #000000;
    text-decoration: none;
    font-weight: 800;
}

.text-section .availability {
    margin-top: 1em;
    font-size: 1em;
    text-align: center;
}

.content .logo {
    max-width: 45%;
}

.content .logo img {
    width: 100%;
    height: auto;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(2px);
}

footer {
    position: absolute;
    bottom: 0;
    padding: 35px 0;
    color: #FFFFFF;
    width: 100%;
}

footer ul {
    list-style: none;
    text-align: center;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 0;
}

footer ul a {
    color: inherit;
    text-decoration: none;
    opacity: 0.8;
}

footer ul a:hover {
    opacity: 1;
    cursor: pointer;
}

footer > a {
    font-size: 24px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    display: inline-block;
    text-align: center;
    border-radius: 50%;
    border: 1px solid #ccc;
    margin: 0 10px;
    color: inherit;
    opacity: 0.75;
}

footer > a:hover {
    opacity: 0.9;
}

footer .list-inline-item {
    display: inline-block;
    margin-right: 50px;
}

footer .copyright {
    margin-top: 10px;
    text-align: center;
    font-size: 15px;
    color: #aaa;
    margin-bottom: 0;
}

footer .copyright a {
    color: #aaa;
    text-decoration: none;
}