/* reset (https://andy-bell.co.uk/a-more-modern-css-reset/) */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}

body, h1, h2, h3, h4, p,
figure, blockquote, dl, dd {
  margin: 0;
}

ul[role='list'],
ol[role='list'] {
  list-style: none;
}

body {
  min-height: 100vh;
  line-height: 1.5;
}

h1, h2, h3, h4,
button, input, label {
  line-height: 1.1;
}

h1, h2,
h3, h4 {
  text-wrap: balance;
}

a:not([class]) {
  text-decoration-skip-ink: auto;
  color: currentColor;
}

img,
picture {
  max-width: 100%;
  display: block;
}

input, button,
textarea, select {
  font: inherit;
}

textarea:not([rows]) {
  min-height: 10em;
}

:target {
  scroll-margin-block: 5ex;
}

/* styles */

body {
    background-color: #60CEF0;
    color: #000;
    font-family: sans-serif;
    display: flex;
    min-height: 100vh;
    flex-direction: column;
    justify-content: space-between;
}

header {
    background-color: #265260;
    color: #fff;
    padding: 1.5em 2em;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-title {
    font-size: 2em;
    font-weight: bold;
}

main {
    max-width: 1200px;
    margin: 2em auto;
    flex-grow: 1;
    width: 100%;
}

main > h1 {
    padding-bottom: 1em;
}

main > p {
    padding-bottom: 0.5em;
}

footer {
    background-color: #132930;
    color: #fff;
    padding: 1.5em 2em;
}

footer a {
    color: #64FAF5;
}

.button {
    background-color: #64FAF5;
    color: #000;
    padding: 1em 1em;
    border-radius: 2em;
    transition: background-color 0.15s, color 0.15s;
}

.button:hover,
.button:focus {
    background-color: #66E3BB;
}

.button:active {
    background-color: #3d8870;
}

.login-to-upload-circle {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #132930;
    color: #fff;
    margin: 0 auto;
    width: 30vw;
    height: 30vw;
    padding: 1em 1em;
    border-radius: 50%;
    text-align: center;
    text-decoration: none;
    transition: background-color 0.2s, color 0.2s, border-width 0.4s;
    border: 0 solid #3d8870;
}

.login-to-upload-circle:hover,
.login-to-upload-circle:focus {
    background-color: #66E3BB;
    color: #000;
    border-width: 0.5em;
}

.login-to-upload-circle:active {
    background-color: #3d8870;
}


.download-circle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #132930;
    color: #fff;
    margin: 2em auto 0;
    width: 85vw;
    height: 85vw;
    padding: 1em 1em;
    border-radius: 50%;
    text-align: center;
    text-decoration: none;
    transition: background-color 0.2s, color 0.2s, border-width 0.4s;
    border: 0 solid #3d8870;
}

.download-circle small {
    display: block;
}

.download-circle:hover,
.download-circle:focus {
    background-color: #66E3BB;
    color: #000;
    border-width: 0.5em;
}

.download-circle:active {
    background-color: #3d8870;
}


body.download main > h1 {
    text-align: center;
}

body.download main > p {
    text-align: center;
}

body.download main > p {
}

@media screen and (min-width: 500px) {
  .download-circle {
    width: 50vw;
    height: 50vw;
  }
}

@media screen and (min-width: 900px) {
  .download-circle {
    width: 25vw;
    height: 25vw;
  }
}

@media screen and (min-width: 1200px) {
  .download-circle {
    width: 15vw;
    height: 15vw;
  }
}

