@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@300&display=swap");

html, body {
    color: white;
    font-weight: normal;
    font-style: normal;
    font-size: 18px;
    font-family: 'Roboto', sans-serif;
    background: linear-gradient(to bottom left, #7B68EE, #8B008B) fixed;
    font-variant: normal;


}
* {
    box-sizing: border-box;
}
/*
commented out because the background is not looking the freshest
.background{
    background-image: url("https://external-content.duckduckgo.com/iu/?u=https%3A%2F%2Fplanetary.s3.amazonaws.com%2Fassets%2Fimages%2Fthumbnail%2F20170713_mercury-fb-thumb_f537.jpg&f=1&nofb=1");
    background-repeat:no-repeat;
    background-size: cover;
    background-position: -90px 5px;
    filter: blur(8px);
    -webkit-filter: blur(8px);
}
*/

.conamara {
    position: absolute;
    top: 46%;
    left: 51%;
    transform: translate(-50%, -50%);
    transition-duration: 2s;
    color: white;
}

#conamara:hover {
    transition-duration: 1.5s;
    letter-spacing: 1px;
}

a {
    text-decoration: none;
    cursor: pointer;
    color: #90ee90;
    transition-duration: 0.75s;
}

a:hover {
    text-shadow: 4px 4px 5px #E9897E;
    color: #ee90ee;
    transition-duration: 1s;
}

#bar {
    word-spacing: 70px;
    position: absolute;
    width: 100%;
    bottom: 10%;
    text-align: center;
    transition-duration: 2s;
    cursor: not-allowed;
}

.static {
    text-align: center;
    letter-spacing: 0px;
    color: white;
}

.wrapper {
    padding:20px;
    background-color:#181818;
    max-width:40rem;
    margin-top:2.5%;
    margin-right:auto;
    margin-left:auto;
    font:18px normal 'Roboto', sans-serif;
    color:#fff;
    box-shadow: 0 10px 15px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    border-radius: 25px;
}
.button {
    background:linear-gradient(indigo, teal) fixed;
    transition-duration: 0.4s;
    color: black;
    border: 2px solid #7B68EE; /* Green */
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    border-radius: 15px;
    margin: 3px;
    width: 100%;
    height: 40%;
}
.button:hover {
    background: linear-gradient(to bottom left, #7B68EE, #8B008B) fixed;
    color: white;
    padding: 20px 38px;
}

.copyright{
    text-align: center;
}

