@media (max-width: 726px) {
    .coverimg {
        max-height: 35vh !important;
    }
    .heading {
        font-size: 10vh !important;
    }
    .description {
        font-size: 3vh !important;
    }
    .email {
        margin-left: 10px;
    }
    .buttons {
        position: relative;
        top: 100px;
    }
}

body {
    background: url('background.png') no-repeat center center fixed;
    background-size: cover;
    font-family: Cabin, sans-serif;
    color: #fff;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center; /* Center everything vertically */
    height: 100vh; /* Full viewport height */
}

.container {
    width: 75%;
    text-align: center;
}

.coverimg {
    max-height: 45vh;
    width: auto;
    filter: drop-shadow(0px 0px 5px rgba(0, 0, 0, 0.4));
}

.heading {
    font-size: 75px;
    margin-top: 25px;
    margin-bottom: 0;
    color: #000;
    font-family: 'Blockheads', sans-serif;
                                                
}

.description {
    font-size: 70px;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 1);
    margin-top: 15px;
    color: #000;
    font-family: 'Blockheads', sans-serif;
                                                
}

.buttons {
    text-align-last: center;
    margin-top: 60px;
    margin-left: 60px;
    
}

.email {
    color: #000; 
    font-weight: bold;
    margin-left: 40px;
}

.buttons {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.button {
    background-color: #f43327;
    color: #ffffff;
    padding: 10px 20px;
    margin: 0 10px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    transition: background-color 0.3s ease;
}

.button:hover {
    background-color: #38383a;
    color: #fff;
}

