:root {
    --fontpink: #FFEDFA;
    --bgpink: #FFB8E0;
    --hotpink: #FF69B4;
    --innerpink: #DD356E;
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
  
html {
    scroll-behavior: smooth;
    font-family: "Yu Gothic UI", "Segoe UI", sans-serif;
    overflow-x: hidden;
    color: var(--fontpink);
    font-size: 16px;
}

a {
    color: var(--fontpink);
    text-decoration: none;
}

/* ------------------------- UNIVERZALIS DIVEK ------------------------- */

main {
    position: relative;
    width: 100vw;
    min-height: 100vh;
    background-color: var(--bgpink);
}

.navbar { /* 3 gombbal */
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    flex-wrap: nowrap;
    padding: 10px;
    z-index: 999;
}

.roundbox { /* kor alaku gombok doboza */
    width: 60px;
    height: 60px;
    margin: 0 5px 0 5px;
    border-radius: 60px;
    background-color: var(--hotpink);
}

.errorbox { /* php */
    color: var(--fontpink);
    font-weight: bold;
    margin-bottom: 1rem;
}

.successbox { /* php */
    color: var(--fontpink);
    font-weight: bold;
    margin-bottom: 1rem;
}

.innersbox { /* belso oldalak fullscreen doboza */
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

/* ------------------------- INDEX ------------------------- */

.index {
    display: flex;
    flex-direction: column;
}

.indexheader { /* szoveges felso resz */
    width: 100%;
    padding: 100px 20px 20px 20px;
    text-align: center;
}

.indexheader ul {
    list-style-type: none;
    font-weight: bold;
    text-shadow: 3px 3px 6px var(--innerpink);
}

.title {
    margin-bottom: 1em;
    color: var(--fontpink);
    font-size: 2rem;
    font-weight: bold;
    text-transform: uppercase;
    text-shadow: 3px 3px 6px var(--innerpink);
}

.indexgallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
}

.indexgallery > div {
    width: 20%;
    min-width: 295px;
    box-sizing: border-box;
    padding: 10px;
}

.indexgallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 15px;

}

.indexfooter { /* footer */
    width: 100%;
    padding: 1em;
    text-align: center;
    font-weight: bold;
    color: var(--fontpink);
    text-shadow: 3px 3px 6px var(--innerpink);
}

/* ------------------------- LOGIN & REGISTER & EGYEB KINTI ------------------------- */

.registerm { /* formok fullscreen doboza */
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: center;
}

.registers { /* formok teste */
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    text-align: center;
    margin-top: 100px;
    padding: 50px 10px 50px 10px; /* alul-felul 50px, oldalt 10px */
    width: 400px;
    background-color: var(--hotpink);
    border: 3px solid white;
    border-radius: 15px;
}

input[type="text"],
input[type="email"],
input[type="password"],
#username, #email, #pass, #confirm {
    width: 250px;
    height: 40px;
    padding-left: 10px;
    background-color: white;
    color: darkmagenta;
    border-radius: 20px;
    border: none;
}

#loginbutt {
    width: 250px;
    height: 40px;
    border-radius: 20px;
    border: 3px solid white;
    background-color: var(--hotpink);
    color: white;
    text-transform: uppercase;
    font-weight: bold;
    cursor: pointer;
}

#regbutt {
    width: 250px;
    height: 40px;
    border-radius: 20px;
    border: 3px solid white;
    background-color: var(--hotpink);
    color: white;
    text-transform: uppercase;
    font-weight: bold;
    cursor: pointer;
}

.registerslinks {
    margin-top: 15px;
    font-weight: bold;
}

/* ------------------------- WELCOME ------------------------- */

.welcomebox {
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.singleitem {
    width: 50%;
    min-width: 350px;
    margin: 10px;
    padding: 20px;
    text-align: left;
    background-color: var(--innerpink);
}

.singleitem h2 { /* collapsible gombhoz hasonlo */
    font-size: 1rem;
    font-weight: bold;
    text-transform: uppercase;
    text-align: left;
}

.singleitem a {
    font-weight: bold;
}

.collapsible { /* collapsible gomb */
    width: 100%;
    color: #FFEDFA;
    font-size: 1rem;
    font-weight: bold;
    text-transform: uppercase;
    text-align: left;
    border: none;
    background-color: var(--innerpink);
    cursor: pointer;
}

.content {
    display: none;
}

/* ------------------------- PREMIUM ------------------------- */

.permiumbox {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: flex-start;
    padding: 80px 20px 20px 20px;
}

.videobox {
    display: flex;
    flex-wrap: nowrap;
    margin: 20px;
    padding: 0;
}

.video {
    width: 400px;
}

@media (max-width: 480px) {
    .registers,
    .singleitem,
    .video {
        width: 90%;
    }
}