@import url('https://fonts.googleapis.com/css2?family=Gabarito&family=Pinyon+Script&display=swap');

body,
h1,
h2,
h3,
h4,
h5,
h6,
button {
    font-family: 'Gabarito', sans-serif;
}

#canvasContainer {
    display: none
}

#previewContainer {
    display: none;
    z-index: 1000;
    position: fixed;
    padding-top: 20px;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    align-items: center;
    flex-direction: column;
}

#mainContainer {
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: center;
    text-align: center;
    font-size: 1.5em;

}

#mainContainer p {
    margin-bottom: 00px;
}

#formContainer {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#logo {
    width: 60%;
    max-width: 600px;
}

.button {
    background-color: orange;
    color: white;
    border-radius: 5px;
    border: none;
    margin-top: 10px;
    height: 40px;
    cursor: pointer;
    font-size: 20px;
    width: 50%;
}

#inputName {
    background-color: #dcdcdc;
    padding: 10px 20px;
    height: 40px;
    font-size: 1.4;
    border: none;
    border-radius: 5;
    width: 50%;
}

#follow {
    background-color: #f55477;
    border-radius: 30px;
    margin-top: 20px;


}

#follow img {
    width: 40px;
    margin-right: 10px;
}

#follow a {
    display: flex;
    align-items: center;
    padding: 10px 20px;
    text-decoration: none;
    color: white
}

#loader {
    display: none;
}

#reset {
    display: none;
    width: 80%;
    display: flex;
    justify-content: center;
    align-items: center;

}

.loader {

    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: inline-block;
    position: relative;
    border: 3px solid;
    border-color: #FFF #FFF transparent;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
}

.loader::after {
    content: '';
    box-sizing: border-box;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    border: 3px solid;
    border-color: transparent #FF3D00 #FF3D00;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    animation: rotationBack 0.5s linear infinite;
    transform-origin: center center;
}

@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes rotationBack {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(-360deg);
    }
}