@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap');

:root {
    font-family: 'Montserrat', sans-serif;
}

body {
    display: flex;
    flex-direction: column;
    /* border: 3px solid black; */
    height: 100vh;
    margin: 0;
    padding: 0;
    user-select: none;
}

.navbar {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #333333;
    height: 75px;
    border-bottom: greenyellow 5px solid;
    box-shadow: 0 0 15px rgb(0, 0, 0);
    z-index: 1000;
}

.buttons {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    width: 50vh;
}

.btnclass {
    background-color: #866f6f;
    color: white;
    border: 2px solid greenyellow;
    border-radius: 5px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: 0.2s;
}

.btnclass:hover {
    background-color: greenyellow;
    color: black;
    border: 2px solid #866f6f;
    scale: 1.1;
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
    background-image: url('https://cdn.discordapp.com/attachments/1102694003104825528/1246229082564198482/Designer4k.png?ex=66618f87&is=66603e07&hm=55b2f763f6700a3710f8a0c64a42ed919658fe6e416146345794c2aaa7bb673a&');
    background-size: cover;
}

header {
    position: absolute;
}

.footer {
    position: absolute;
    background-color: #333333;
    border-top: greenyellow 5px solid;
    box-shadow: 0 0 10px 0 rgb(0, 0, 0);
    width: 100%;
    height: 75px;
    bottom: 0;
}

h1 {
    font-size: 4rem;
    font-weight: 700;
    animation: fadeIn 6s ease-in-out infinite;
}

p {
    font-size: 1.5rem;
    font-weight: 800;
    margin-top: -50px;
}

/* create a pulse animation for the h1 class */

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

