@import url('https://fonts.googleapis.com/css2?family=Source+Code+Pro:wght@300&display=swap');

body{
    background: #383838;
    font-family: 'Source Code Pro', monospace;;
    color: white;
    text-decoration: none;
}

.center {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.container{
    background: #303030;
    padding: 20px;
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
}

.divider{
    width: 100%;
    border-top: 1px solid white;
}

.socials{
    text-align: center;
    padding: 30px 10px;
}

button {
    background: #252525;
    border: none;
    color: white;
    font-size: 50px;
    padding: 15px;
    border-radius: 10px;
    transition: .3s;
}

button:hover{
    cursor: pointer;
    background: #fff;
    color: black;

}

button:disabled{
    background: rgba(37, 37, 37, 0.43);
    color: #808080;
    cursor: not-allowed;
}

a{
    text-decoration: none;
}

.footer{
    bottom: 0;
    left: 0;
    position: fixed;
    width: 100%;
    background: #303030;
    text-align: center;
}