body {
    margin:0;
    padding:0;
    font-family: 'Roboto', sans-serif;
    background-color: rgb(255, 255, 255);
}

p{
    color:rgb(253, 253, 253);
}

.header{
    display: flex;
    justify-content: center;
}

header p{
    font-family: 'Rubik Gemstones', cursive;;
    font-size: 70px;
    color: rgb(0, 0, 0);
    transition: all 0.3s;
}

@media (max-width: 550px){
    .header p{
        font-size: 40px;
        font-family: 'Roboto', sans-serif;
        font-weight: bold;
        transition: all .3s;
    };
}

@media (min-height: 200px) and (max-height: 550px){
    .header p{
        font-size: 60px;
        margin: 10px;
        transition: all 0.3s;
    }

    #result{
    display: inline-block;
    margin-left: 100px;
    width: 250px;
    font-size: 20px;
    font-weight: 500;
    justify-content: center;
    }
}


.main-div{
    display: flex;
    justify-content: center;
    align-items: center;
}

.main{
    height: 100px;
    display: flex;
    justify-content:center;
    align-items: center;
    position: relative;
    border-color: black;
    position:relative;
}

.main-2{
    height: 100px;
    display: flex;
    justify-content:center;
    align-items: center;
    position: relative;
    border-color: black;
}

.click-button{
    position: relative;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: rgb(255, 255, 255);
    background-color: #000000;
    height: 50px;
    width: 100px;
    border-radius: 10px;
    border-color: #888888;
    border-style:hidden;
    padding-left: 10px;
    padding-right: 10px;
    margin: 10px;
    cursor: pointer;
    transition: 0.3s ease-in-out;
}

.click-button:hover{
    box-shadow: 5px 5px 20px #acacac;
    height: 60px;
    width: 140px;
    border: none;
    color: rgb(253, 253, 253);
    background-color: rgb(0, 0, 0);
    font-size: 20px;
}

.enter{
    border: none;
    border-radius: 10px;
    margin: 0;
    height: 50px;
    width:140px;
    font-size: 20px;
    font-weight: bold;
    color: rgb(255, 255, 255);
    background-color: #000000;
    /* margin-left: calc((100vw/2.25));
    margin-right:auto; */
    transition: 0.3s ease-in-out;
    cursor: pointer;
}

.enter:hover{
    box-shadow: 5px 5px 15px #808080;
    width: 300px;
    font-size: 18px;
}

#result{
    margin-left: 100px;
    width: 250px;
    font-size: 30px;
    font-weight: 500;
    justify-content: center;
}

#result p{
    color: black;
}