::-webkit-scrollbar {
    width: 0;
    background: transparent;
}

@keyframes fade-in {
  from {
    opacity: 0;
    transform: translateY(100%);
  }
  to {
    opacity: 1;
  }
}

@keyframes fade-in-opacity {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.fade-in {
    animation: fade-in 1s;
}

.fade-in-opacity {
    animation: fade-in-opacity .5s;
}

* {
    font-family: "Inter-Light";
}

html, body {
    background: linear-gradient(var(--bg-col-gr1), var(--transparent));
    background-color: var(--bg-col-gr2);
    height: 100%;
    overflow: hidden;
    margin: 0;
}

h1 {
    text-align: center;
    margin: 0;
    font-size: 60px;
    background: linear-gradient(var(--main-col-gr1), var(--main-col-gr2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

p {
    font-size: 35px;
    background: linear-gradient(var(--norm-col-gr1), var(--norm-col-gr2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.button {
    position: relative;
    z-index: 1;
    width: auto;
    height: 45px;
    border-radius: 50px;
    border: 0;
    background: linear-gradient(var(--btn-norm-col-gr1), var(--btn-norm-col-gr2));
    text-align: center;
    padding: 0px 40px;
    outline: none;
    cursor: pointer;
    font-family: "Inter-Medium";

    font-size: 25px;
    color: var(--btn-txt-col);
    
}

.button::before {
    border-radius: 50px;
    position: absolute;
    content: '';
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: linear-gradient(var(--main-col-gr1), var(--main-col-gr2));
    z-index: -1;
    opacity: 0;

    transition: all .6s linear;
}

.button:hover::before {
  opacity: 1
}

.footer p {
    font-size: 20px;
	margin: 2px;
	padding: 2px;
}

#username {
    background: linear-gradient(var(--main-col-gr1), var(--main-col-gr2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.album-grid-container {
    height: calc(100% - 50px);
    border-radius: 25px;
    border: 25px solid transparent;

    display: grid;
    grid-template-columns: repeat(3, calc(100%/3));
    grid-template-rows: repeat(3, calc(100%/3));
    overflow-x: auto;
}

.album-grid-item > img {
    display: block;
    width: 100%;
    height: 100%;
}

.album-grid-item {
    position: relative;
    overflow-y: clip;
}

.album-grid-item .column-item-text {
    display: none;
}

.album-button-container {
    opacity: 0;
    bottom: -15%;
    display: grid;
    grid-template-columns: auto auto auto;
    background: linear-gradient(#333, #111);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    height: 15%;
    width: 60%;

    justify-content: center;
    align-items: center;

    border-radius: 10px 10px 0 0;
    transition: all .3s linear;
}

.album-grid-item:hover .album-button-container {
    bottom: 0;
    opacity: 1;
}

.album-button {
    color: #fff;
    width: 80%;
    height: 80%;

    transition: all .25s linear;
}

.album-button:hover {
    color: var(--main-col-gr1);
}

header {
    padding-top: 10px;
    padding-left: 10px;
    
    height: 1%;
    font-size: 16px;
    font-style: italic;
    color: var(--norm-col-gr1);
}

a {
    color: var(--norm-col-gr1);
    text-decoration: underline;
}

a:hover {
    font-weight: bold;
}

main {
    display: grid;
    justify-items: center;
    align-content: center;
    
    height: 100%;
}

footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding-bottom: 10px;
    text-align: center;
    margin: 0;

    height: 2.5%;
}

.footer-text {
    margin: 0;
    font-size: 16px;
}

.title {
    height: fit-content;
    text-align: center;
}

.sub-text {
    margin-top: 0;
    margin-bottom: 0;
    text-align: center;
}

.box-containers {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;

}

.box {
    text-align: center;
    width: 300px;
    height: 600px;
    background: linear-gradient(var(--box-bg-col-gr1), var(--box-bg-col-gr2));
    border-radius: 25px;
}

.want {
    margin-right: 100px;
}


.album {
    width: 400px;
    height: 400px;
    background: linear-gradient(var(--box-bg-col-gr1), var(--box-bg-col-gr2));
}

.copy-button {
    cursor: pointer;
    padding-top: 10px;
    width: 32px;
    height: 32px;
}

.copy-link-grad-stop1 {
    stop-color: var(--btn-norm-col-gr1);
}

.copy-link-grad-stop2 {
    stop-color: var(--btn-norm-col-gr2);
}

.copy-button:hover {
    scale: 1.1;
}

.copy-button:hover stop:first-child {
    stop-color: var(--main-col-gr1);
}

.copy-button:hover stop:last-child {
    stop-color: var(--main-col-gr2);
}

.copy-button, .copy-button:hover, .copy-button:hover stop:first-child, .copy-button:hover stop:last-child, .copy-link-grad-stop1, .copy-link-grad-stop2 {
  transition: all .5s linear;
}

.have {
    margin-left: 100px;
}

.column-grid-container {
    height: calc(100% - 50px);
    border-radius: 25px;
    border: 25px solid transparent;
    display: flex;
    flex-direction: column;
    overflow-x: auto;
}

.column-item {
    background: linear-gradient(var(--bg-col-gr1), var(--bg-col-gr3));
    display: flex;
    border-radius: 10px;
    width: 100%;
    height: 64px;
    margin-top: 5px;
    margin-bottom: 5px;
    cursor: pointer;
}

.column-item img {
    border-radius: 10px;
    width: 64px;
    height: 64px;
}

.column-item-text {
    height: 100%;
    width: 100%;
    text-align: left;
    margin-left: 10px;
    margin-right: 10px;

    display: grid;
    align-content: center;
}

.column-item-text p {
    font-size: 16px;
    margin: 0;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

.column-item-text p:first-child {
    font-size: 24px;
    background: linear-gradient(var(--main-col-gr1), var(--main-col-gr2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.delete-element {
    opacity: 0;
    transition: .2s all ease-out;
}

input[type=text] {
    width: 200px;
    min-width: 150px;
    border: 0;
    border-bottom: 2px solid var(--main-col-gr1);
    text-align: center;
    outline: none;
    font-size: 35px;

    background: linear-gradient(var(--main-col-gr1), var(--main-col-gr2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    
    transition: all .25s linear;
}

.login-button {
    padding-left: 10px;
    width: 24px;
    height: 24px;

    transition: all .5s linear;
}

.login-button:hover {
    scale: 1.1;
}

.login-button-grad-stop1 {
    stop-color: var(--btn-norm-col-gr1);
}

.login-button-grad-stop2 {
    stop-color: var(--btn-norm-col-gr2);
}

.login-button:hover {
    scale: 1.1;
}

.login-button:hover stop:first-child {
    stop-color: var(--main-col-gr1);
}

.login-button:hover stop:last-child {
    stop-color: var(--main-col-gr2);
}

.login-button, .login-button:hover, .login-button:hover stop:first-child, .login-button:hover stop:last-child, .login-button-grad-stop1, .login-button-grad-stop2 {
  transition: all .5s linear;
}
