body,
html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%
}

.wrapper {
    position: fixed;
    display: flex;
    width: 100%;
    height: 100%;
    flex: 1;
    align-items: center;
    justify-content: center
}

svg {
    position: absolute;
    width: 0;
    height: 0
}

.discord-wrapper {
    position: fixed;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.discord-window {
    width: 300px;
    background-color: #36393f;
    border-radius: 5px
}

.discord-header {
    width: 100%;
    padding: 10px;
    background-color: #40444b;
    box-sizing: border-box;
    border-radius: 5px 5px 0 0;
    font-family: Lato, sans-serif;
    color: #fff
}

.input-group {
    margin: 8px;
    display: flex
}

.discord-link {
    padding: 8px;
    font-family: Lato, sans-serif;
    background-color: #40444b;
    border: none;
    color: #fff;
    border-radius: 3px 0 0 3px;
    flex: 1
}

.copy-button {
    padding: 8px;
    font-family: Lato, sans-serif;
    background-color: #40444b;
    border: none;
    color: #fff;
    border-radius: 0 3px 3px 0
}

.copy-button:hover {
    background-color: #3b3e45
}

.discord-button {
    width: 100%;
    background-color: #3ca374;
    border: none;
    border-radius: 0 0 5px 5px;
    padding: 8px;
    color: #fff;
    font-size: 110%;
    display: block;
    box-sizing: border-box;
    text-align: center;
    font-family: Lato, sans-serif;
    text-decoration: none
}

.discord-button:hover {
    background-color: #30825d
}

.fadein {
    opacity: 0;
    -webkit-animation: fadein 2s;
    -moz-animation: fadein 2s;
    -ms-animation: fadein 2s;
    -o-animation: fadein 2s;
    animation: fadein 2s;
    -webkit-animation-fill-mode: forwards;
    -moz-animation-fill-mode: forwards;
    -ms-animation-fill-mode: forwards;
    -o-animation-fill-mode: forwards;
    animation-fill-mode: forwards
}

.delay {
    -webkit-animation-delay: .5s;
    -moz-animation-delay: .5s;
    -ms-animation-delay: .5s;
    -o-animation-delay: .5s;
    animation-delay: .5s
}

@keyframes fadein {
    from {
        opacity: 0
    }
    to {
        opacity: 1
    }
}

@-moz-keyframes fadein {
    from {
        opacity: 0
    }
    to {
        opacity: 1
    }
}

@-webkit-keyframes fadein {
    from {
        opacity: 0
    }
    to {
        opacity: 1
    }
}

@-ms-keyframes fadein {
    from {
        opacity: 0
    }
    to {
        opacity: 1
    }
}

@-o-keyframes fadein {
    from {
        opacity: 0
    }
    to {
        opacity: 1
    }
}

.instagram-window {
    margin-top: 25px;
    width: 300px;
    background-color: #fff;
    border-radius: 5px;
    border: solid 1px #f0f0f0;
    display:flex;
    flex-direction:row;
    padding: 8px;
    font-family: Lato, sans-serif;
    box-sizing: border-box;
}

.instagram-avatar {
    border-radius: 100%;
    width: 80px;
    height: 80px;
}

.instagram-info {
    flex: 1;
    margin-left: 8px;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
}

.instagram-username {
    display: block;
    margin-bottom: 8px;
    font-size: 120%;
    color: #5a5a5a;
}

.instagram-button {
    display: block;
    text-decoration: none;
    background-color: #0095f6;
    border-radius: 3px;
    padding: 3px 8px 5px 8px;
    margin: 0;
    text-align: center;
    color: #fff;
    font-family: Lato, sans-serif;
    width: 100%;
    box-sizing:border-box;
}

.instagram-button:hover {
    background-color: #0086dd;
}

.icon {
    margin-right: 5px;
}
