* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;

}
        
body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background-color: #83d6de;
}

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

.logo {
    max-width: 680px;
    height: auto;
}

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

.adminhead {
    width: 100%;
    height: 65px;
    background-color: #00d5ff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.admincontent {
    margin-top: 85px;
}


.pswtext {
    color: #273331;
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    margin-top: 10px;
    margin-bottom: 10px;
}

.bgadmin {
    background-color: #2a343d;
    border-radius: 50%;
}

.pswcontent {
    width: 100%;
    height: 100vh;
    background-color: #83d6de;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.main-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.menu {
    display: flex;
    flex-direction: column;
    gap: 70px;
}

.menu-item {
    text-align: center;
}

.menu-link {
    display: inline-block;
    text-decoration: none;
    color: #2c3e50;
    font-weight: bold;
    font-size: 18px;
    padding: 12px 25px;
    background-color: #f8f9fa;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.menu-link:hover {
    background-color: #3498db;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

footer {
    width: 100%;
    height: 100px;
    background-color: #81e0f8;
    border-top: #333 1px solid;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: auto;
}

.footer-text {
    color: #666;
}

.footer__answers {
    width: 100%;
    height: 50px;
    bottom: 0;
    position: fixed;
    background-color: rgb(177, 215, 253); 
}

.inputnumber {
    width: 100%;
    height: 150px;
    background: -webkit-linear-gradient(0deg, #00d5ff,#6dab9c, rgb(80, 228, 136));
    background: linear-gradient(0deg, #00d5ff,#6dab9c,rgb(80, 228, 136));
    border-bottom: 1px solid white;
}

.q__number {
    width: 100px;
    height: 50px;
    background-color: sienna;
    color: aliceblue;
    border-radius: 10px 0px 0px 0px;
}

.q__question {
    width: 100%;
    height: auto;
    background-color: rgb(242, 248, 163);
}

.q__answers {
    width: 100%;
    height: auto;
    background-color: rgb(193, 221, 250);
}

.otstup {
    margin-top: 150px;
}

.home {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 45px;
    height: 45px;
    background-color: white;
    border-radius: 50%;
}

 .home:hover {
        box-shadow: 5px 0px #a2a1a1;
}

.copy-link {
    text-decoration: none;
    margin-left: 8px;
    display: inline-flex;
    align-items: center;
    padding: 4px;
    border-radius: 3px;
    transition: all 0.2s ease;
}

.copy-link:hover {
    background-color: #f0f0f0;
    opacity: 0.8;
    border-radius: 15px;
}

.copy-link img {
    vertical-align: middle;
    pointer-events: none;
}

.answer-container {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}



@media screen and (max-width: 600px) {

    .logo {
        width: 100%;
        height: 130px;
    }
}