@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&display=swap');

body {
    margin: 0;
    padding: 0;
    background-color: rgb(0, 0, 0);
}

#background-video {
    position: fixed;
    right: 0;
    bottom: 0;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -1;
}

div.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100vh;
}

div.grid {
    margin: 20px auto;
    width: 400px;
    height: 400px;
    display: grid;
    grid-template-columns: 200px 200px;
    grid-row: auto auto;
    grid-column-gap: 5px;
    grid-row-gap: 5px;
}

div.buttoncontainer {
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}

a.button {
    width: 190px;
    height: 190px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 50px;
    cursor: pointer;
}

a.button:hover {
    transition: linear;
    transition-duration: 100ms;
    scale: 1.05;
}

a.instagram {
    background-color: white;
    color: #c43cab;
    border-top-left-radius: 180px;
    transition: linear;
    transition-duration: 100ms;
}

a.twitter {
    background-color: white;
    color: #13b2f7;
    border-top-right-radius: 180px;
    transition: linear;
    transition-duration: 100ms;
}

a.github {
    background-color: white;
    color: #010001;
    border-bottom-left-radius: 180px;
    transition: linear;
    transition-duration: 100ms;
}

a.discord {
    background-color: white;
    color: #8f99ff;
    border-bottom-right-radius: 180px;
    transition: linear;
    transition-duration: 100ms;
}

a.instagram:hover {
    background-color: #c43cab;
    color: white;
}

a.twitter:hover {
    background-color: #13b2f7;
    color: white;
}

a.github:hover {
    background-color: #010001;
    color: white;
}

a.discord:hover {
    background-color: #8f99ff;
    color: white;
}

h1 {
    font-family: "Archivio Black", sans-serif;
    font-weight: 700;
    font-style: normal;
    color: white;
    margin-bottom: -10px;
}

h4 {
    font-family: "Archivio Black", sans-serif;
    font-weight: 400;
    font-style: normal;
    color: white;
}
