* {
    margin: 0;
    padding: 0;
}

html {
    color: white;
    font-family:sans-serif;
    background-color: black;
}

.top-header, .body-section, .faq-container{
    border-bottom: 5px solid #535251;
}

.top-header {
    height: 80vh;
    background-image: url(images/background-img.webp);
}

.container {
    height: 100%;
    background-color: rgba(0,0,0,0.7);
}

.dropdown-container {
    position: relative;
}

.btn {
    background-color: #E50815;
    padding: 10px 20px;
    border: none;
    color: white;
    border-radius: 5px;
}

.language-picker {
    padding: 10px 30px;
    background-color: rgba(0,0,0,0.7);
    color: white;
    border: 1px solid #535251;
    border-radius: 5px;
}

.language , .drop-down {
    position: absolute;
    top: 8px;
}

.language {
    left: 4px;
}

.drop-down {
    right: -2px;
    top: 6px;
}

.navbar {
    margin: 0px 100px;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
}

.right-half { 
    display: flex;
    gap: 40px;
    align-items: center;
}

/** header content **/
.content {
    margin: 20vh auto;
    width: 60%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.content h1 , .content p {
    margin-top: 20px;
}

.content h1 {
    font-size: 45px;
    font-weight: bold;
}

.content p {
    font-size: 19px;
    font-weight: bold;
}

.email-container {
    display: flex;
    gap: 20px;
    width: 70%;
    margin-top: 20px;
}

.email-container > input {
    flex-grow: 1;
    background-color: rgba(0,0,0,0.7);
    border: 1px solid #535251;
    padding: 0 10px;
    border-radius: 5px ;
    color: white;
}

.get-started-btn {
    display: flex;
    align-items: center;
    font-size: 24px;
}

.get-started-btn > span {
    font-size: 30px;
}

.body-section {
    display: flex;
    align-items: center;
    padding: 40px 100px;
}

.left-item h1 , .right-item h1 {
    font-size: 50px;
    margin-bottom: 20px;
}

.left-item p , .right-item p {
    font-size: 24px;
}

.right-item {
    position: relative;
}

.right-item > video {
    position: absolute;
    left: 80px;
    top: 20%;
    z-index: -1;
}

.layout {
    border: 2px solid #5A5A5A;
    border-radius: 10px;
    background-color: black;
    position: absolute;
    width: 50%;
    bottom: 50px;
    left: 25%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.layout p {
    font-size: 20px;
    display: flex;
    flex-direction: column;
}

.layout p span {
    color: blue;
}

.layout img {
    width: 50px;
}

.static-left-item {
    position: relative;
}

.faq-container {
    padding: 40px 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.faq-container > h1 {
    font-size: 50px;
    margin: 20px;
}

.faq {
    font-size: 20px;
    background-color: #2D2D2D;
    display: flex;
    justify-content: space-between;
    align-self: stretch;
    padding: 20px;
    border-radius: 4px;
    transition-duration: 0.5s;
}

.faq:hover {
    background-color: #656565;
}

.faq > p, .faq > span {
    font-size: 25px;
}

.faq-container > p {
    font-size: 25px;
    margin: 20px 0;
}

/** footer style **/

.footer-container {
    padding: 100px;
}

.footer-container, .footer-container a {
    color: #AFAFAF;
}

.links-container {
    display: flex;
    gap: 250px;
    justify-content: flex-start;
    padding: 40px 0;
}

.links-item {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
