html,
body {
    height: 100%;
    margin: 0;
}

.linkedtitles {
    display: flex;
    justify-content: space-between;
    font-size: small;
}

.linkedtitles a {
    text-align: center;
    text-decoration: none;
    color: rgb(11, 0, 73);


}

body {
    background-color: #ffffff;
    background-image:
        linear-gradient(0deg, rgba(0, 0, 0, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, 0.1) 1px, transparent 1px);
    background-size: 40px 40px;
}

.sea {
    font-family: "jacquarda-bastarda-9", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.body-text {
    font-style: italic;
    color: #010A26;
}

.first-line {
    display: flex;
    justify-content: space-around;
    font-size: 6rem;
    text-transform: uppercase;
}

.first-container {
    display: flex;
    justify-content: left;
    gap: 50px;
}

.second-container {
    display: flex;
}

.second-body-text {
    margin-top: -150px;
    text-transform: uppercase;
}

.second-line {
    display: flex;
    justify-content: space-evenly;
    font-size: 6rem;
    color: #010A26;
}

.calm {
    font-family: Arial, Helvetica, sans-serif;
    text-decoration: underline;
}

.calm:hover {
    color: #F2F2F2;
    transition-duration: 2s;
    letter-spacing: 5px;
}

.deep {
    display: inline-block;
    /* Necessary for transform effects */
    transition: transform 0.3s ease;
    /* Smooth transition */
    transition-duration: 2s;

}

.deep:hover {
    transform-origin: top;
    content: attr(data-text);
    overflow: hidden;
    transform: scaleY(10.5);


    /* Scale bottom half *
    transform: scaleY(10);
    /* Stretch vertically */
}

.container {
    display: flex;
    justify-content: right;
    gap: 200px;
}

.container-two {
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

.rectangle {
    height: 100px;
    width: 100px;
    background-image: url('ocean-waves.jpg');
    background-position: bottom left;
    position: relative;
    bottom: 280px;
    left: 430px;
    border-radius: 100%;
    transition: 0.3s;

}


.wavy-line {
    position: relative;
    bottom: 365px;
    left: 43%;
    transition: 0.2s;
    background-image: url(ocean-waves.jpg);
    background-position: left;

    --s: 30px;
    /* size of the wave */
    --b: 20px;
    /* thickness of the line */
    --m: 0.4;
    /* curvature of the wave [0 2] */
    --R: calc(var(--s)*sqrt(var(--m)*var(--m) + 1) + var(--b)/2);
    height: calc(2*var(--R));
    width: 15%;
    --_g: #0000 calc(99% - var(--b)), #000 calc(101% - var(--b)) 99%, #0000 101%;
    mask:
        radial-gradient(var(--R) at left 50% bottom calc(-1*var(--m)*var(--s)), var(--_g)) calc(50% - 2*var(--s)) calc(50% - var(--s)/2 - var(--b)/2)/calc(4*var(--s)) calc(var(--s) + var(--b)) repeat-x,
        radial-gradient(var(--R) at left 50% top calc(-1*var(--m)*var(--s)), var(--_g)) 50% calc(50% + var(--s)/2 + var(--b)/2)/calc(4*var(--s)) calc(var(--s) + var(--b)) repeat-x;

}

.rectangle-two {
    position: relative;
    bottom: 300px;
    left: 700px;
    width: 300px;
    /* Adjust width as needed */
    height: 100px;
    /* Adjust height as needed */
    overflow: hidden;
    border-radius: 40px;
    /* Round corners */
    clip-path: inset(0 0 0 0 round 40px);
    /* Adjust to control rounded corners */
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url(bread.jpeg);
    background-position: bottom right;
    transform: rotate(90deg);
    transition: 0.3s;
}