*{
    margin: 0; padding: 0; box-sizing: border-box;
}

@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');

body {
    font-family: 'Roboto', sans-serif; 
    background-color: gray;
    color: #EEE;
    overflow-x: hidden;
}

main {
    border: 45px solid blue;
    width: 95vw; aspect-ratio: 1/1;
    margin: -18px auto;
    border-radius: 50%;
    position: absolute;
    top: 0; left: 50%;
    transform: translateX(-50%);
    overflow: hidden;
}

h1 {
    text-align: center;
    margin-top: 8vw;
    text-transform: uppercase;
    font-weight: normal;
    color: blue;
    letter-spacing: 2vw;
    line-height: 1.4;
    font-size: 10vw;
}

.hometown h1 {
    font-size: 3vw;
    text-align: center;
    z-index: 1;
}

.hometown p {
    text-align: center;
    display: inline;
    text-wrap: balance;
    position: relative;
    z-index: 2;
    color: #EEE;
    font-size: smaller;
}

.hometown .content p {
    margin-bottom: 15px;
}

img {
    height: 40vh;
    align-items: center;
    position: relative;
}

nav {
    padding: 10px 30px 90px 30px;
    margin: 0px 0px;
    background-color: blue;
    text-align: center;
    position: absolute;
    top: 50%;
}

nav a {
    color: green;
    text-decoration: none;
    font-size: 16pt;
    display: inline-block;
    padding: 10px 12px;
}

nav a:hover {  background-color: #333; color: #fff; }

footer {
    position: absolute;
    background-color: #333;
    top: 100vw;
}