* {
    margin: 0;
    padding: 0;
    font-family: Verdana, sans-serif;
    box-sizing: border-box;
}

.container {
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.brand-name {
    font-size: 90px;
    margin-bottom: 50px;
    font-weight: 400;
    font-family: 'Courgette', sans-serif;
    color: #4586ff;
}

.container .video-box {
    position: relative;
    width: 100%;
    height: 30%;
    overflow: hidden;
}

.container .video-box video {
    position: absolute;
    width: 100%;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}

.contact p {
    margin-top: 50px;
    color: #2929bc;
    text-align: center;
}