@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Special+Gothic+Expanded+One&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: white;
    --Secondary-color: black;
}

body {
    background-color: var(--Secondary-color);
    color: var(--primary-color);
    font-family: "Bebas Neue", sans-serif;
    font-size: 1.2rem;
    line-height: 1.5;
    text-align: center;
}

h1 {
    text-align: center;
    color: var(--primary-color);
    font-family: "Special Gothic Expanded One", sans-serif;
    font-size: 4rem;
    position: relative;
    bottom: -40px;
    z-index: 0;
}

a {
    color: var(--primary-color);
    text-decoration: none;
}

a:hover {
    color: maroon;
    text-decoration: underline;
}

nav {
    width: 100vw;
    text-align: center;
    background-color: var(--Secondary-color);
    box-shadow: 0px 18px 20px 0.5px var(--Secondary-color);
    position: fixed;
    top: 0;
    z-index: 5;

}

nav ul li {
    display: inline-block;
    margin: 12px 0;
    padding: 0 25px;
    text-transform: capitalize;
    font-family: "Bebas Neue", sans-serif;
}

#container {
    background-color: rgba(255, 255, 255, 0.07);
    width: 780px;
    min-height: 75vh;
    border-radius: 2.5%;
    margin: 45px auto;

}

#img-cont {
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid var(--primary-color);
    border-radius: 2.5%;
    margin: 45px auto;
    width: 780px;
    min-height: 75vh;
}

.vid-hv{
    width: 350px;
    height: auto;
    border-radius: 15px;
    margin: 15px;
    box-shadow: 0px 0px 15px 0.5px black;
}

.vid-hv:hover{
    box-shadow: 0px 0px 25px 0.5px rgba(255, 255, 255, 0.185);
}

#caption {
    text-align: left;
    width: 780px;
    margin: 45px auto;
}

p {
    color: var(--primary-color);
    margin: 12px 0;
    padding: 0 25px;
    font-family: "Bebas Neue", sans-serif;
}

::selection {
    background-color: var(--primary-color);
    color: var(--Secondary-color);
}

.h22 {
    color: var(--primary-color);
    font-size: 2rem;
    text-align: center;
    margin: 0 auto;
    padding: 0 25px;
    font-family: "Bebas Neue", sans-serif;
    font-weight: bold;
    text-align: left;
}

.hv_1:hover {
    color: rgb(61, 230, 230);
}

.hv_2:hover {
    color: rgb(214, 15, 15);
}

footer {
    background-color: black;
    color: white;
    text-align: center;
    padding: 20px 0;
    position: relative;
    bottom: 0;
    width: 100%;
    font-size: smaller;
}