* {
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: black;
    color: white;
    font-family: 'Courier New', Courier, monospace;
    transition: all 0.3s ease-in-out;

}

.title {
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    text-align: center;
    margin: 5em 0;
    font-size: 2.2rem;
}

.container {
    background-color: rgba(255, 255, 255, 0.082);
    padding: 2px 0px 60px 0px;
    border-radius: 12px;
    max-width: 1000px;
    margin: 70px auto;
    box-shadow: 0px 0px 30px rgba(78, 255, 202, 0.938);
    transition: all 0.3s ease-in-out;
}

.container:hover {
    box-shadow: 0px 0px 0px rgba(78, 255, 202, 0.938);
}

.explain {
    margin: 5rem 0;
    padding-left: 8px;
}

.center {
    text-align: center;
    background-color: rgb(60, 136, 113);
    padding: 14px;
    transition: all 0.2s ease-in-out;
}

.center:hover {
    scale: calc(1.03);
}

.header-content {
    background-color: #1a1a1a;
    height: 100px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    transition: all 0.3s ease-in-out;
    transform: translateY(0);
}

.header-content-hidden {
    transform: translateY(-100%);
}

select {
    text-align: center;
    width: 300px;
    margin: 0 60px;
    padding: 13px 20px;
    outline: none;
    font-size: .9rem;
    background-color: #222222;
    color: white;
    font-family: 'Courier New', Courier, monospace;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    box-shadow: 0px 0px 18px rgba(78, 255, 202, 0.938);
    transition: all 0.3s ease-in-out;
}

select:hover {
    box-shadow: 0px 0px 5px rgba(78, 255, 202, 0.938);
}

.aleart::before {
    content: "copied!";
    position: fixed;
    bottom: 40px;
    right: 20px;
    background-color: rgba(65, 139, 115, 0.938);
    color: white;
    width: 200px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    border-radius: 8px;
    opacity: 0;
    transition: all .3s ease-in-out;
    transform: translateY(100px);
}

.aleart.active::before {
    transform: translateY(0px);
    opacity: 1;
}

.links {
    display: flex;
    justify-content: center;
    align-items: center;
    color: rgb(76, 182, 159);
    margin-top: 50px;
}



/* responsiv */

@media screen and (max-width:1200px) {
    .container {
        max-width: 800px;
    }

}

@media screen and (max-width:900px) {
    .container {
        max-width: 700px;
    }

    select {
        margin: 30px;
    }
}

@media screen and (max-width:768px) {
    .container {
        max-width: 600px;
    }

    select {
        margin: 0px;
        width: 250px;
        font-size: 0.8rem;
        font-weight: 700;
    }
}

@media screen and (max-width:650px) {
    .center:hover {
        scale: calc(1.00);
    }

    select {
        margin: 10px;
        width: 200px;
        font-size: 0.8rem;
        font-weight: 700;
    }
}

@media screen and (max-width:450px) {

    select {
        width: 160px;
    }
}