@import url('https://fonts.googleapis.com/css?family=Fredericka+the+Great&display=swap');

html, body {
    font-family: 'Fredericka the Great', cursive;
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
}

body {
    background-image: url("../img/background.webp");
    background-position: center;
    background-size: cover;
}

main {
    height: 45vh;
    width: 45%;
    max-width: 700px;
    margin: 10vh 5vw;
    background-color: rgba(46, 46, 46, 0.75);
    position: absolute;
    top: 20%;
    left: 0;
    z-index: 999;
    border-radius: 3px;
    transition-property: width, height, margin, background-color;
    transition-duration: 1.2s;
 }

.icon {
    display: block;
    width: 10rem;
    height: auto;
    border-radius: 5px;
 }

.profile {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.profile > * {
    margin: 5%;
}

@media (max-width: 1200px) {
    main {
      top: 0;
      height: 100%;
      width: 100%;
      max-width: 100%;
      margin: 0;
    }
}

@media (max-width: 720px) {
    .profile {
        flex-flow: column nowrap;
    }
}

ul {
    padding-left: 0px;
}

li {
    list-style: none;
    color: #FFFFFF
}

h2 {
    color: #FFFFFF;
}

a, a:hover, a:visited, a:link, a:active {
    color: #FFFFFF;
}
