body {
    font-family: 'Arial', monospace;
    font-size: large;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    background-image: url('Fishing1.jpg');
    background-size: cover;
    /* background-size: 80%; */
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    height: 100vh;
    background-color: #333;
    /* all browser no selection */
    user-select:  none;
    -webkit-user-drag: none;
    -webkit-user-select: none; 
    -moz-user-select: none; 
    -ms-user-select: none; 
}

.icon-section {
    display: flex;
    align-items: center;
    justify-content: center; 
    gap: 60px;
    margin: 0;
    margin-top: 30px;
    margin-bottom: 30px;
}

.icon-background {
    position: absolute;
    width: 600px;
    height: 120px;
    background-color: #83a6c4;
    border-radius: 30px;
}

.icon-container {
    text-align: center;
    position: relative;
}

.icon {
    width: 60px;
    height: auto;
    cursor: pointer;
    border-radius: 15px; 
    transition: transform 0.3s ease; 
}

.icon:hover {
    transform: scale(1.6);
}

.icon-text {
    opacity: 0;
    position: absolute;
    width: 200px;
    top: 75px;
    left: 50%;
    transform: translateX(-50%) translateY(20px) scale(0.2); 
    /* color: rgb(5, 4, 100); */
    color: #333;
    font-size: 1.6em;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.icon-container:hover .icon-text {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.rectangle {
    position: absolute;
    top: 220px;
    left: 250px;
    width: 1200px;
    height: 300px;
    background-color: #83a6c4;
    border-radius: 30px;
    z-index: -1;
}

.main {
    display: flex;
    flex-direction: row;
    margin-left: 200px;
    padding-left: 100px;
}

.feature {
    width: 300px;
    padding: 50px;
    border-radius: 80px; 
}

.intro {
    width: 700px;
    padding-top: 135px;
}

.custom-link {
    color: rgb(5, 4, 100);
    font-weight: bold;
}

.social {
    justify-content: center;
    display: flex;
    padding-top: 10px;
}

.social-container {
    display: flex;
    gap: 80px;
    width: fit-content;
}

.social-item img {
    width: 36px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

#social2 { width: 45px}
#social3 { width: 32px}

.social-item img:hover {
    transform: scale(1.2);
}

footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    z-index: 1000;
    background-color: #333;
    padding-top: 10px;
    text-align: center;
    margin-top: auto;
    color: white;
}