main, ::before, ::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: roboto, sans-serif;
}

.home {
    position: relative;
}
video {
    position: fixed;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.home-content {
    position: relative;
    color: #fff;
    text-align: center;
    padding-top: 10%;
}

img {
    width: 110px;
}
h1 {
    font-family: 'Shadows Into Light', cursive;
    font-size: clamp(45px, 7vw, 130px);
    line-height: 1.1;
    text-shadow: 1px 1px 2px #d5442C;
}
.home p {
    font-size: clamp(25px, 4vw, 55px);
    
    font-family: 'Wire One', sans-serif;
    text-shadow: 1px 1px 2px black;
}





a {
    text-decoration:none;

}


.home-content button {
    display: block;
    font-size: clamp(14px, 1.5vw, 18px);
    color: #fff;
    margin: 50px auto 0;
    padding: 12px 20px;
}

button {
    background: #d5442C;
        color: #fff;
        padding: 1rem 3rem;
        font-size: 1.5rem;
        font-weight: 600;
        border: none;
        border-radius: 2rem;
        cursor: pointer;
        transition-duration: 0.4s;
}

button:hover {
    background: #fff;
    box-shadow: 0px 2px 20px 10px #97B1BF;
    color: #000;
}