* {
    padding: 0;
    margin: 0;
}

.title {
    font-family: "Tourney", sans-serif;
    color: #d4e4ff;
    font-size: 50px;
    transition-duration: .5s;
    opacity: 0; 
    transform: translateY(-110px);
    transition: opacity 3s ease, transform 3s ease; 
}


   
body {
    display: flex;
    justify-content: center;
    align-items: center;

    width: 100vw;
    height: 100vh;
    background: black;
}

.content {
    display: flex;
    align-items: center;
    flex-direction: column;
    position: relative;
    z-index: 1;
}

.audioplayBack {
	width: 142px;
    height: 32px;
    background-color: #a7b7d1;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;

}

.audioplay {
	width: 150px;
    height: 40px;
    background-color: #d4e4ff;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 15px;
}

.icon {
    font-size: 40px;
    color: #d4e4ff;
    transition-duration: .5s;
}

.icon:hover {
    scale: 1.1;
    color: #b8c8e3;
    transition-duration: .5s;
}

.links {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 30px;

    opacity: 0; 
    transform: translateY(110px);
    transition: opacity 3s ease, transform 3s ease; 
}



#myVideo {
    position: fixed;
    right: 0;
    bottom: 0;
    min-width: 100%;
    min-height: 100%;
    filter: brightness(60%);
}


