@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500&display=swap');

* {
	margin:0; padding:0; box-sizing:border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background: url(../images/bg.jpg) no-repeat fixed top center;
    width: 100%;
    background-size: cover;
}
.content {
    float: left;
    width: 100%;
    text-align: center;
    margin-top: 2vw; /* or set to 0 for very top */
}
.wrapper {
    width: 91%;
    margin: 0 auto;
}
.content h3 {
    font-size: 1.4vw;
    text-align: center;
    color: #FFFFFF;
    font-weight: 500;
}
.content a {
    color: #FFFFFF;
    border: none; /* 🔸 remove the border */
    text-decoration: none;
    font-size: 1.4vw;
    display: inline-block;
    padding: .2vw .2vw;
    border-radius: .5vw;
    margin-top: .5vw;
}
