* {
    margin: 0;
    padding: 0;
}

body {
    background-image: url(../img/fon10.jpg);
    background-attachment: fixed;
    background-size: cover;
}

.aplay {
    width: 100%;
    display: flex;
    margin-top: 20px;
    margin-bottom: 20px;
}

audio {
    margin-left: auto;
    margin-right: auto;


}

audio::-webkit-media-controls-panel {
    height: 60px;
    background-color: rgba(0, 0, 0, 0.9);
    border-radius: 5px;
}

legend a {
    text-decoration: none;
}

.registration {
    opacity: 0;
    display: flex;
    flex-direction: column;
    align-content: center;
    margin-top: 20px;
    margin-bottom: 20px;

    animation-name: regopt;
    animation-duration: .2s;
    animation-delay: .1s;
    animation-timing-function: linear;
    animation-play-state: running;
    animation-iteration-count: 1;
    animation-direction: normal;
    animation-fill-mode: forwards;

}

@keyframes regopt {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.registrform legend h2 {
    display: flex;
    color: rgb(255, 0, 0);
    font-size: 26px;
    font-weight: bold;
    letter-spacing: 5px;
    margin-top: 10px;
    justify-content: center;
}

.registrform {
    display: flex;
    flex-direction: column;
    width: 320px;
    margin: auto;
    background-color: black;
    background-position: center;
    border: rgb(255, 70, 0) solid 2px;
    border-radius: 16px;
    box-shadow: 1px 3px 2px 1px rgba(133, 133, 133, 0.5);
    padding-bottom: 30px;
}

.registrform input {
    width: 280px;
    border: 0;
    background-color: black;
    border-bottom: rgb(27, 27, 27) solid 3px;
    border-right: rgb(27, 27, 27) solid 1px;
    color: rgb(255, 70, 0);
    font-size: 16px;
    margin-top: 30px;
    margin-left: auto;
    margin-right: auto;
}

.registrform select {
    width: 280px;
    border: 0;
    background-color: black;
    border-bottom: rgb(27, 27, 27) solid 3px;
    border-right: rgb(27, 27, 27) solid 1px;
    color: rgb(255, 70, 0);
    font-size: 16px;
    margin-top: 30px;
    margin-left: auto;
    margin-right: auto;
}

#pl1 {
    color: rgb(73, 73, 73);
}

input #regok {
    width: 280px;
    height: 30px;
    background-color: black;
    margin-left: auto;
    margin-right: auto;
    color: rgb(255, 70, 0);
}

input:focus {
    outline: none;
    border-top: rgb(49, 49, 49) solid 3px;
    border-left: rgb(49, 49, 49) solid 1px;
    border-right: black;
    border-bottom: black;
}

select:focus {
    outline: none;
    border-top: rgb(49, 49, 49) solid 3px;
    border-left: rgb(49, 49, 49) solid 1px;
    border-right: black;
    border-bottom: black;
    color: rgb(255, 70, 0);
}

#regok:hover {
    border: 0;

    border-top: 3px rgb(49, 49, 49) solid;
    border-left: solid rgb(49, 49, 49) 1px;
}

#regok:active {
    border: 0;
    border-bottom: 3px rgb(49, 49, 49) solid;
    border-right: solid rgb(49, 49, 49) 1px;
}