* {
    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: white;
    background-color: black;
    background-image: url(Media/bg-img.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    font-family: my-font;
}

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

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

button {
    color: white;
    cursor: pointer;
    background: transparent;
}

i {
    vertical-align: middle;
}

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


.content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: transparent;
    text-align: center;
    border: 2px solid white;
    padding: 50px;
    margin: 50px;
    font-size: x-large;
}

.contact-btn button {
    padding: 10px 30px 10px 30px;
    margin-top: 20px;
    border-radius: 20px;
    border-color: white;
    background-color: rgba(255, 255, 255, 0.1);

}

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;
    }

    .content {
        font-size: large;
    }

}