* {
    margin: 0;
    padding: 0;
    color: #E3E3E3;
    font-family: "Roboto Mono";
}

body {
    margin: 0 auto;
    width: 1440px;
    display: flex;
    padding-bottom: 80px;
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
    background: #1F2E5A;
    overflow-x: hidden;
}

header {
    display: flex;
    width: 1440px;
    padding: 22px 48px;
    justify-content: space-between;
    align-items: center;
    border: 10px solid #E3E3E3;
    box-sizing: border-box;
    background: #A2122E;
}

nav {
    width: 100%;
}

ul {
    list-style: none;
    display: flex;
    justify-content: space-between;
    width: 100%;
}

a {
    text-decoration: none;
    color: inherit;
}

li {
    width: 180px;
    list-style-type: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.netflixlogo {
    width: 152px;
}

.logoshow {
    width: 342px;
    justify-self: center;
}

.controlicons {
    display: flex;
    gap: 8px;
    justify-self: flex-end
}

.controlicons img {
    width: 43px;
    height: auto;
}

.leftcontainers {
    display: flex;
    flex-direction: column;
    gap: 27px;
    width: 786px;
    float: left;
}

.container {
    display: flex;
    padding-bottom: 22px;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    align-self: stretch;
    border: 10px solid #E3E3E3;
    background: #4B5E97;
    position: relative;
    bottom: -10px;
    opacity: 0;
    box-sizing: border-box;
    animation: fade 800ms ease-in-out 5s forwards;
}

@keyframes fade {
    from {
        opacity: 0;
        bottom: -10px;
    }
    to {
        opacity: 1;
        bottom: 0;
    }
}

.container2 {
    background: #A2122E;
}

.container3 {
    margin-left: 48px;
    width: 606px;
    gap: 0;
    float: left;
    padding-bottom: 0;
    border-bottom: 0;
}

.polaroidframe {
    display: flex;
    width: 606px;
    padding: 9px 28px 64px 29px;
    box-sizing: border-box;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    border: 9px solid #E3E3E3;
    background: #E3E3E3;
    box-shadow: 5px 6px 4.5px 0 rgba(0, 0, 0, 0.10);
}

.polaroid {
    width: 549px;
    height: 459px;
    background-image: url(public/images/tripimg01.jpg);
    background-position: center;
    background-size: contain;
}

.polaroidframe h1 {
    color: #1F2E5A;
    text-align: center;
    font-family: Caveat;
    font-size: 40px;
    font-style: normal;
    font-weight: 661;
    line-height: normal;
}

.toptab {
    width: 100%;
    box-sizing: border-box;
    display: flex;
    padding: 16px 22px;
    justify-content: space-between;
    border-bottom: 10px solid #E3E3E3;
    background: #A2122E;
}

h1 {
    font-size: 28px;
    font-weight: 700;
    line-height: 43px;
}

h2 {
    font-size: 26px;
    font-weight: 400;
}

h3 {
    color: #E3E3E3;
    font-size: 24px;
    font-weight: 300;
    letter-spacing: 0.5px;
    font-family: "IBM Plex Mono";
    padding: 22px;
    width: 100%;
    box-sizing: border-box;
}

.profileflex {
    display: flex;
    gap: 48px;
    align-self: flex-start;
    padding: 0 24px;
}

.profile_details {
    display: flex;
    flex-direction: column;
}

.profileflex {
    display: flex;
    align-items: center;
    gap: 43px;
}

.profiledetails {
    display: flex;
    width: 438px;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}

.BGAvatar {
    width: 161px;
    height: 161px;
    border-radius: 108px;
    background-image: url(public/images/Avatar1.png);
    background-position: center;
    background-size: contain;
}

.itemflex {
    align-self: center;
}

.randomitem {
    width: 282px;
    height: 282px;
    transform: rotate(5deg);
    background-image: url(public/images/item1.png);
    background-position: center;
    background-size: contain;
}

.randomitem2 {
    width: 282px;
    height: 282px;
    transform: rotate(5deg);
    background-image: url(public/images/item1.png);
    background-position: center;
    background-size: contain;
}

.typewriter h2 {
    overflow: hidden;
    border-right: 1px solid rgb(255, 255, 255);
    white-space: nowrap;
    margin: 0 auto 32px auto;
    letter-spacing: 1px;
    animation: typing 3.5s steps(40, end) 3s forwards, blink-caret .75s step-end infinite 2s;
}

@keyframes blink-caret {
    from,
    to {
        border-color: transparent
    }
    50% {
        border-color: rgb(255, 255, 255);
    }
}

@keyframes typing {
    from {
        width: 0
    }
    to {
        width: 100%
    }
}

