* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Opificio";
    font-weight: bold;
}

body {
    display: grid;
    grid-template-rows: repeat(2, 1fr);
    height: 100vh;
}

.section-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.section-image video {
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: -1;
}

.section-info {
    padding-left: 80px;
    padding-right: 80px;
    z-index: 999;
    background-color: white;
    box-shadow: -3px -6px 17px -2px rgba(0, 49, 105, 0.75);
    -webkit-box-shadow: -3px -6px 17px -2px rgba(0, 49, 105, 0.75);
    -moz-box-shadow: -3px -6px 17px -2px rgba(0, 49, 105, 0.75);
    border-top-right-radius: 100px;
    border-top-left-radius: 100px;
    box-shadow: inset;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
}

.section-info h1 {
    font-size: 60px;
}

.section-info p {
    font-size: 40px;
    text-align: center;
}

.section-info a {
    text-decoration: none;
    font-size: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    min-width: 675px;
    min-height: 140px;
    border-radius: 100px;
    background-color: #003169;
}
