@import url('https://fonts.googleapis.com/css2?family=Sora:wght@100..800&display=swap');

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

body {
    font-family: 'Sora', sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100vh;
    background: linear-gradient(rgba(4, 9, 30, 0.7), rgba(4, 9, 30, 0.7)), url('srmgoat.jpg');
    background-size: cover;
    background-position: center;
}

.header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 20px;
}

.home-button img {
    max-height: 70px;
    margin-right: 60px;
}

.logo {
    max-height: 40%;
    max-width: 15%;
    margin-left: 40px; /* Set the maximum height of the logo */
}
.video-container {
    border-radius: 20px;
    position: relative;
    width: 80%; /* Adjust the width as needed */
    height: 80%; /* Adjust the height as needed */
}

video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    padding-bottom: 150px;
}

 