* {box-sizing: border-box;}
            
html, body{font-family: helvetica; display:block; width: 100%; height: 100%; margin: 0px auto; text-align: center; background-color: #000000; padding: 0.5vh 0.25vw;; overflow: hidden;}
h1{color: #b2b2b2; width: 200; word-wrap: break-word; font-size: 35px;}
p{color: #b2b2b2; font-size: 1.5rem; width: 200; word-wrap: break-word;}
input{display: none}
a{all: unset; display: inline-block;}

.rounded-background{
    margin: auto; 
    width: 100%; 
    height: 100%; 
    border-radius: 2vh; 
    background-color: #464646; 
    display: flex; 
    flex-direction: column;
    align-items: center; 
    justify-content: center;
}

.main{
    display: flex; 
    flex-direction: column; 
    align-items: center; 
    justify-content: center; 
}

.custom-button {
    border: 2.5px solid #b2b2b2;
    border-radius: 20px;
    padding: 6px 12px;
    cursor: pointer;
    margin-left: auto; 
    margin-right: auto; 
    color: #b2b2b2; 
    background-color: transparent;
    font-size: 15px;
    display: inline-block;
    text-decoration: none;
}

.custom-button-inverted {
    border: 5px solid #464646;
    border-radius: 20px;
    padding: 7px 14px;
    cursor: pointer;
    margin-left: auto; 
    margin-right: auto; 
    color: #464646; 
    background-color: #b2b2b2;
    font-size: 15px;
    display: inline-block;
    text-decoration: none;
}