* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
    scrollbar-width: none;
    -webkit-scrollbar-width: none;
}

@font-face {
    font-family: my-font;
    src: url(My-Fonts/Lato/Lato-Regular.ttf);
}

body {
    color: black;
    background-color: white;
    font-family: my-font;
}

header {
    position: sticky;
    top: 0;
    display: flex;
    font-size: large;
    z-index: 2;
    align-items: center;
    padding: 10px;
    height: 5vh;
    background-color: black;
}

a {
    text-decoration: none;
    color: white;
}

main {
    display: flex;
    justify-content: center;
    align-items: center;
}

.content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin: 50px;
    font-size: x-large;
}

footer {
    background-color: black;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 5vh;
    padding: 10px;
    text-align: center;
}

@media only screen and (max-width: 600px) {
    header {
        font-size: medium;
    }

    footer {
        font-size: small;
    }

    iframe {
        width: 100vw;
        height: 1450px;
    }
}