* {
    overflow: hidden;
}

.contact {
    z-index: -1;
    display: flex;
    color: white;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 100vh;
    width: 100vw;
    margin: 0;
    background-image: linear-gradient(rgb(0, 0, 187) ,rgb(45, 45, 255));
}

.contact .box-3 h2 {
    color: white;
    animation: school 1s infinite;
}

.header-container {
    height: 60px;
}

.main-nav {
    display: none !important;
}

.hamburger-menu {
    display: none !important;
}

.exit a {
    color: white;
}

@keyframes school {
    0% {
        color: white;
    }

    50% {
        color:  rgb(121, 0, 0);
    }

    0% {
        color: white;
    }
}