* {
    padding: 0;
    margin: 0;
}

html {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

body {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-transform: uppercase;
    position: relative;
    background-color: #E6E6E6;
}

.logo {
    position: absolute;
    top: 2rem;
    left: 2rem;
    z-index: 100;
}

.logo img {
    width: 150px;
}

iframe {
    width: 100%;
    height: 100vh;
}

.topbar {
    width: 100%;
    height: 10vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.index {
    width: 50%;
    display: grid;
    grid-template-columns: repeat(auto-fill, 350px);
    grid-gap: 1rem;
    justify-content: space-between;
    margin-top: 10vh;
}

.index2 {
    width: 50%;
    /* display: grid;
    grid-template-columns: repeat(auto-fill, 200px);
    grid-gap: 1rem;
    justify-content: space-between; */
    display: flex;
    align-items: center;
    justify-content: space-around;
    margin-top: 10vh;
}

.index1 {
    width: 90%;
    display: grid;
    grid-template-columns: repeat(auto-fill, 220px);
    grid-gap: 1rem;
    justify-content: space-between;
    margin-top: 10vh;
}

.selector {
    padding: 2rem 1.5rem;
    color: white;
    background: black;
    font-size: 1.75rem;
    /* border-radius: 5px; */
    width: 300px;
    text-align: center;
    margin-top: 2rem;
    transition: .3s ease-out;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, .3);
    border-radius: 10px;
}

.selector2 {
    background: white;
    /* border-radius: 5px; */
    width: 200px;
    height: 200px;
    text-align: center;
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: .3s ease-out;
    flex-direction: column;
    border: 2px solid rgb(106, 106, 106);
    border-radius: 10px;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, .3);
    position: relative;
    overflow: hidden;
}

.selector2 h3 {
    position: absolute;
    top: 0px;
    color: white;
    background-color: black;
    width: 100%;
    padding: 5px;
    font-weight: 600;
}

.selector2:hover {
    transform: scale(1.1);
}

.selector:hover {
    transform: scale(1.1);
}

.selector1:hover {
    transform: scale(1.1);
}

.selector1 {
    box-shadow: 5px 5px 15px rgba(0, 0, 0, .3);
    transition: .3s ease-out;
    padding: 2rem 1.5rem;
    color: white;
    background: black;
    font-size: 1.5rem;
    /* border-radius: 5px; */
    width: 90%;
    text-align: center;
    margin-top: 1rem;
    border-radius: 10px;
}

a {
    text-decoration: none;
}

.selector2 img {
    /* filter: invert(); */
    height: 100px;
    position: absolute;
    bottom: 35px;
}