@font-face {
    font-family: 'I KNOW A GHOST';
    src: url('../assets/IKNOWAGHOST.woff2') format('woff2'),
        url('../assets/IKNOWAGHOST.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

.formatted_text{
    font-family: 'I KNOW A GHOST'; 
    font-weight: normal; 
    font-style: normal;
}

body{
    margin:0px;
}

.container {
    width:920px;
    background-color:white;
    height:100vh;
}

@media (max-width: 959px) {
    .container {
        width: auto;
        margin: 0;
    }
    .nav_font{
        font-size:25px !important;
    }
}

.button {
    padding: 10px 20px;
    background-color: white;
    color: #333;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.button:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
}

.button:active {
    transform: translateY(0);
}

.nav_font{
    font-size:30px;
}

video, .contact_img {
    width: calc(100vw - 40px);
    max-width: 100%; /* Prevent overflow */
}

@media (min-width: 320px) and (max-width: 767px) { /* Mobile */
    video, .contact_img {
        width: calc(100vw - 40px);
    }
}

@media (min-width: 768px) and (max-width: 1023px) { /* Tablet */
    video, .contact_img {
        width: calc(100vw - 40px);
    }
}

@media (min-width: 1024px) and (max-width: 1439px) { /* Small Desktop */
    video, .contact_img {
        width: calc(100vw - 40px);
    }
}

@media (min-width: 1440px) { /* Large Desktop */
    video, .contact_img {
        width: calc(100vw - 40px);
    }
}
